sed -i "s/原字符串/新字符串/g" `grep 原字符串 -rl 所在目录` # 备份加替换(将index.js中的123替换为456) sed -i.bak "s/123/456/g" ./index.js
← 首页 scp 命令→