我有一个名为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
我的命令出了什么问题?