-3 如果我想查找名稱中帶有「test」字符串的所有文件,我該怎麼做?Linux-如何查找名稱中包含特定字符串的文件? 來源 2016-09-09 java123999 +4 的可能的複製[Linux的 - 與名稱包含字符串查找文件(http://stackoverflow.com/questions/11328988/linux -find - 文件 - 使用含有名字符串) –
1 你可以試試這個: find . -maxdepth 1 -name "test" -print 或 find . -type f -name "*test*" 來源 2016-09-09 09:55:51
的可能的複製[Linux的 - 與名稱包含字符串查找文件(http://stackoverflow.com/questions/11328988/linux -find - 文件 - 使用含有名字符串) –