find 명령어와 그 밖의 명령어를 이용하여 아래의 작업을 할 수 있다.
1. 특정 파일 속 특정 단어 찾기
ex) html 파일에서 mms:// 찾기
find . -type f -name "*.html" -exec grep "mms://" {} /dev/null \;
(뒤에 /dev/null을 붙이는 이유는 해당 파일명을 보기 위함이다.)
2. 특정 파일 속 특정 단어 바꾸기
ex) html 파일에서 mms://를 http://로 바꾸기
find . -type f -name "*.html" -exec perl -pi -e 's/mms/http/g' {} \;
perl 대신 sed (stream editor) 명령을 사용할 수 도 있다.
find . -type f -name "*.html" -exec sed -i 's/mms/http/g' {} +
3. 특정 파일만 압축하기
ex) html 파일만 찾아서 압축하기
for i in $(find . -name '*.html'); do tar -zrvf html.tgz $i; done
4. 5일 지난 파일 삭제하기
rm -f 'find . -mtime +5'