标签: shell
我想找到任意号码的文件扩展名,请你帮忙。
/dp.104, / dp.102,/ dp.101,/ dp.103
以下所需的输出
`find <Path>/log -type f -name "dp.[0-9]+" `
此致 普拉
答案 0 :(得分:0)
使用查找的-regex选项:
-regex
find /path -type f -regex '.*/dp\.[0-9]+'