打印目录中的文件名,超过54个单词

时间:2013-11-04 15:27:08

标签: linux shell find

我需要找到目录中“秘密”的超过54个单词的所有文件,这些文件可以在任何地方。

我开始时:

find / | grep 'secret/*'

1 个答案:

答案 0 :(得分:1)

使用此

find / -type f | grep 'secret/*' | awk /[a-zA-Z.-]{54}/

在awk / [你的模式] /

中使用你喜欢的任何模式匹配