jam 블로그

[스크립트] 파일 찾아서 문자열 바꾸기 본문

시스템/리눅스

[스크립트] 파일 찾아서 문자열 바꾸기

kid1412 2010. 12. 3. 11:57
728x90
#!/bin/sh
/bin/find ./ -name '파일명' -type f -exec perl -pi -e 's/찾는 문자/바꿀 문자/g' {} \;

Comments