我知道我可以搜索字符串:unix命令行...如何grep並只顯示包含字符串的文件名?
grep -n -d recurse 'snoopy' *
,然後顯示一個包含該字符串,像每一個文件名,例如:
file/name.txt:23 some snoopy here
file/name2.txt:59 another snoopy there
file/name2.txt:343 some more snoopy
etc...
的問題是,有許多事件,該名單是巨大的。我如何讓它只顯示包含字符串的實際文件名,沒有重複且沒有發生?
只有像:
file/name1.txt
file/name52.txt
file/name28293.txt
非常感謝任何幫助:)
您使用'-l'參數。 – 2014-11-04 21:07:03