LINUX

리눅스 특정 단어 찾기 find grep

OJR 2008. 9. 10. 08:00
http://odysseymoon.tistory.com/21

# find -type f | xargs grep "string"

.bashrc 에 넣어두었다.

alias finds="find . -type f  | xargs grep "

그러면

# finds "string" 으로 찾을수 있다.