Questions tagged «grep»

grep是用于搜索文件中文本模式的命令行工具。

2
Cat,Grep,重定向输出…空白文件?
我刚跑 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为空白。 谁能向我解释为什么会这样,或者我应该以正确的方式去解决这个问题?
8 bash  grep  pipe  cat 


2
猫* | grep某事…结果在什么文件中?
如果要运行以下命令 cat * | grep DATABASE Shell将吐出*文件中包含单词的所有行DATABASE。有什么办法还可以吐出每行分开的文件吗? 我试着使用-H了grep的选项根据该man说,print the filename for each match但在我的壳它只是说, (standard input):$DATABASE_FUNCTION = dothis();
8 bash  grep  cat 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.