This .bashrc function is working on the command line, its a nice bash one line'er.
but moving it into the bash profile and it stops working ?
replaceInAll (){
find . -name "$1" -print | xargs sed -i 's/$2/$3/g'
}
what am i not getting wright with this ?
This works
replaceInAll (){ find . -name "$1" -print | xargs sed -i s/"$2"/"$3"/g }