명령어 (Language : text)
  1. 문자열 찾기 : find . -type f -name *.conf -exec grep “찾을문자열” {} \; -print
  2. 문자열 변경:  find / -name “*.txt” -exec perl -pi -e ‘s/찾을문자열/바꿀문자열/g’ {} \;