如何在shell脚本中查找任何数字的文件扩展名

时间:2018-01-31 08:44:35

标签: shell

我想找到任意号码的文件扩展名,请你帮忙。

/dp.104, / dp.102,/ dp.101,/ dp.103

以下所需的输出

    `find <Path>/log -type f -name "dp.[0-9]+" `

此致 普拉

1 个答案:

答案 0 :(得分:0)

使用查找-regex选项:

find /path -type f -regex '.*/dp\.[0-9]+'