标签: shell
我制作了一个剧本,
cat $FILE | sed -e "s/^abc.*$/efg/" > $FILE
但是,$ FILE的内容为空。 如果代码是
cat $FILE | sed -e "s/^abc.*$/efg/" > another_file.txt
another_file.txt保存正确的结果。 如果有人知道什么是错的或有解决方案/建议, 请告诉我。
非常感谢。
答案 0 :(得分:1)