vim, gitconfig, update.sh
[dotfiles_afify.git] / .scripts / find_replace_word.sh
blob0f4b93b30b735228716c3198345907a192feeee6
1 #!/bin/sh
3 dir=$1
4 old_word=$2
5 new_word=$3
7 find "$dir" -type f -exec sed -i "s/$old_word/$new_word/g" {} +