为什么sed不起作用?

时间:2017-05-16 20:23:59

标签: unix sed replace sh space

我有一个名为test.sh的文件 这是test.sh里面的内容:

LC_ALL=C zgrep -hoi "an unexpected EOF" /data/log/test.log.gz >> temp.txt

我想将"an unexpected EOF"替换为"App_UnhandledException"

我还想将temp.txt替换为tempEOF.txt

我试过这个命令,但似乎没有用。运行命令后,我没有看到任何替换

sed -i 's/an unexpected EOF/App_UnhandledException/g' test.sh

我的命令出了什么问题?

0 个答案:

没有答案