标签: linux string file
如果我想在名称中找到所有带有“test”字符串的文件,我该怎么办?
答案 0 :(得分:1)
你可以试试这个:
find . -maxdepth 1 -name "test" -print
或
find . -type f -name "*test*"