Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在大量文本文件中找到一些东西,我希望输出在一个文件中,这样我就可以在闲暇时阅读它:
grep -i 'alter table' *.sql >> tables.txt
grep(这是 Gnu 工具的 Windows 版本)在 >> 处抱怨。我已经尝试过管道和所有其他方法,但也没有定义输出文件的选项。
有任何想法吗?
这在这里有效:
grep -i "other something" *.txt >> tables.txt
重提这个老问题,但它是谷歌的第一批结果之一。
grep 输出不同,因此我需要添加此选项以将结果输出到文件中:
grep --line-buffered
来源