发布网友 发布时间:2022-04-22 09:44
我来回答
共1个回答
热心网友 时间:2022-05-25 23:44
我一般用find命令,比如要找一个叫 test.txt的文件,那就是find 路径 -name "test.txt"find / -name "test.txt" 这就是在根目录下查找名为test.txt的文件, 这个还支持通配符,比如:find / -name "*test*" 这 就是查找文件名包含 test 的文件