如何使用sed替换所有文件中的字符串?

时间:2019-04-16 09:10:19

标签: sed

我要在所有文件中将下一行替换为下一行。因此,为此使用了sed模式。我已经尝试了很多,但没有弄清楚。.

checkToken($token['token'])
checkToken($token)

这是我尝试过的

sed -i -- 's/checkToken\(\$token\['token'\]\)/checkToken\(\$token\)/g' get_officers_v2.php

1 个答案:

答案 0 :(得分:1)

您只需要将转义符(\)放在正确的位置即可,例如:

sed -ie "s/\(checkToken(\$token\)\['token'\])/\1)/" get_officers_v2.php