여러 파일에 있는 특정문자를 다른 바꿀문자로 한번에 바꾸는 방법은 다음과 같다.


grep -rl "특정문자" * | xargs sed -i 's/특정문자/바꿀문자/g'


아 편하다...

Posted by code cat