bash – Cat,Grep,Redirect Output …空白文件?

前端之家收集整理的这篇文章主要介绍了bash – Cat,Grep,Redirect Output …空白文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我跑了
cat /opt/webapplications/Word/readme.log | grep -v 'Apple'

我得到了我期待的cli的输出,readme.log中的所有行都没有包含’Apple’……

接下来我跑了……

cat /opt/webapplications/Word/readme.log | grep -v 'Apple' > /opt/webapplications/Word/readme.log

但是,/ opt /webapplications / Word / readme.log为空.

任何人都可以向我解释为什么会发生这种情况,或者我应该采取正确的方法吗?

这是因为第一件事>是创建它想要写入的文件 – 如果文件已经存在,其内容将被删除. (另外,在你的语句中根本不需要使用cat,因为grep适用于文件,而不仅仅是STDIN.)

执行此操作的正确方法是使用临时文件来读取或写入.所以要么

cp /opt/webapplications/Word/readme.log /tmp/readme.log
grep -v 'Apple' /tmp/readme.log > /opt/webapplications/Word/readme.log

要么

grep -v 'Apple' /opt/webapplications/Word/readme.log > /tmp/readme.log
mv /tmp/readme.log /opt/webapplications/Word/readme.log

会工作.

原文链接:https://www.f2er.com/bash/385766.html

猜你在找的Bash相关文章