컴퓨터 Tip
리눅스 유용한 명령어
Songker
2011. 8. 30. 18:21
- 특정 파일들에서 원하는 문자를 변경
find . -type f -name '*.d' | xargs -- /usr/bin/perl -w -pi -e 's{찾을문자}{치환문자}g'