标签: regex perl
我有一个文件test,其中包含以下内容
test
foo bar
我想将foo替换为bar。
foo
bar
我跑perl -p -e 's/foo/bar/g' test但没有任何反应。
perl -p -e 's/foo/bar/g' test
我确信此前已经完成,但任何帮助都会受到赞赏。
答案 0 :(得分:0)
这里没有问题要回答。
test.txt
$ perl -pe 's/foo/bar/g' test.txt
bar bar