如何查找/etc中所有以P开头的文件

如何查找/etc中所有以P开头的文件

我想知道如何查找 /etc 文件中以 P 开头的所有文件,然后将结果存储在一个新文件中。

到目前为止我已经

$find /etc -name 

不确定接下来会发生什么。

答案1

如果你想查找所有以P开头的常规文件,你可以使用:

find /etc -type f -name 'P*'

如果您不想递归到子目录:

find /etc -maxdepth 1 -type f -name 'P*'

答案2

让我们stat尝试一下:

  stat -c "%F %n" /etc/P* | grep "regular file" | cut -d' ' -f 3-

相关内容