标签: shell unix replace sed
我正在使用find /path -type f -exec sed -i 's/oldstr/newstr/g' {} \;(来源:Stackoverflow)。这工作正常。但是,我想用空格和特殊字符替换字符串。
find /path -type f -exec sed -i 's/oldstr/newstr/g' {} \;
旧字符串 - > where acc_id = ".$_SESSION['acc_id']);
where acc_id = ".$_SESSION['acc_id']);
新字符串 - > ");
");
我不想使用正则表达式。我有确切的字符串。有没有办法用上面的find和sed命令或其他任何方法呢?