: find /home/ -maxdepth 2 -name .bash_history -exec cat {} ;|grep .conf|less
: 다음과 같이 하면 사용자의 .bash_history 중 .conf 를 검색해서
: 뿌려주던데요..
:
: 여기서 해당하는 사용자의 계정명까지 나타내게 할 수는 없을까요 --;;
find /home/ -maxdepth 2 -name .bash_history -exec grep -H .conf {} ; | less