Replacing strings in multiple files in Linux - githeim/windheim_archive GitHub Wiki
Replacing strings in multiple files in Linux
κ²μλ νμΌ μμ μλ λ¬Έμμ΄μ hello --> byeλ‘ μ ν Convert the string in the searched file to hello --> bye
find . -name "*.sh" -exec perl -pi -e 's/hello/bye/g' {} \;