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他们?我的意思是有一个实用程序可以简单地回显这个内容,然后可以grep通过pipe?
grep
pipe
谢谢。
内容在哪里?如果它在文件 'foo' 中,请尝试
grep -E whateveryouarelookingfor foo
如果它在 bash 变量 'bar' 中,请尝试
echo "${bar}" | grep -E whateveryouarelookingfor