cygwin awk包含字符串的输出文件

时间:2017-10-06 11:07:12

标签: awk grep cygwin

好的,所以我希望在我的C盘中搜索包含名称" Public"

的多个.txt文件

文件名示例

 public.txt
 publicagain.txt
 etc etc

然后将它们输出到文件夹

2 个答案:

答案 0 :(得分:0)

这应该是找到命令的任务(我没有Cygwin,所以无法测试它),请你试试看,然后让我知道。

find -type f -exec grep -l "Public" {} \+

如果您没有任何文件的权限,并且您不希望在标准输出上看到任何错误,那么您可以使用以下命令。

find -type f -exec grep -l "Public" {} \+ 2>/dev/null

答案 1 :(得分:0)

cd C:并使用以下查找命令

find -type f -iname '*public*'