我正在使用tail和grep在多个文件中找到类似“ Apple”的内容 我需要获取在其中找到结果的文件名
tail -F files_name grep --line-buffered -e 'Apple' -e 'Orange' while read ; do while :; do echo -en "\007"; sleep 1; done ; done
答案 0 :(得分:0)
像我想得一样,看着我。
listView1_ColumnClick(object sender, ColumnClickEventArgs e)
在grep 'Apple\|Orange' file1 file2
和Apple
中都搜索字符串Orange
或file1
。 file2
将以grep
作为分隔符输出文件名。您可以使用:
仅打印文件名。