【问题标题】:Linux- how to find a file with a certain string in its name? [closed]Linux-如何查找名称中包含特定字符串的文件? [关闭] 【发布时间】:2017-01-17 10:36:09 【问题描述】: 如果我想查找名称中包含字符串“test”的所有文件,我该怎么做? 【问题讨论】: Linux - Find Files with Name Containing String的可能重复 标签: linux string file 【解决方案1】: 你可以试试这个: find . -maxdepth 1 -name "test" -print 或 find . -type f -name "*test*" 【讨论】: