[OpenBSD] fix volume_control script
[dotfiles_afify.git] / .scripts / find_replace_word.sh
blob721630ed0278d61d247b5fe50feb8fcfa0122693
1 #!/usr/bin/env bash
3 #==============================================================================
4 # Name : find_replace_word
5 # GitHub : Afify
6 # Copyright : MIT
7 # Version : 0.1
8 # Description :
9 #==============================================================================
11 dir=$1
12 old_word=$2
13 new_word=$3
15 # sed -i -- "s/$old_word/$new_word/g" *
16 find $dir -type f -exec sed -i "s/$old_word/$new_word/g" {} +