使用cli但不作为.bashrc函数的replaceInAll脚本

时间:2014-08-29 13:02:36

标签: bash shell sed .bash-profile bash-function

这个.bashrc函数正在命令行上运行, 这是一个不错的打击线。

但将其移入bash配置文件并停止工作?

replaceInAll (){ find . -name "$1" -print | xargs sed -i 's/$2/$3/g' }

我对此并不紧张?

1 个答案:

答案 0 :(得分:0)

这有效

replaceInAll (){ find . -name "$1" -print | xargs sed -i s/"$2"/"$3"/g }