我要在所有文件中将下一行替换为下一行。因此,为此使用了sed
模式。我已经尝试了很多,但没有弄清楚。.
checkToken($token['token'])
checkToken($token)
这是我尝试过的
sed -i -- 's/checkToken\(\$token\['token'\]\)/checkToken\(\$token\)/g' get_officers_v2.php
答案 0 :(得分:1)
您只需要将转义符(\
)放在正确的位置即可,例如:
sed -ie "s/\(checkToken(\$token\)\['token'\])/\1)/" get_officers_v2.php