grep是查找文件内的内容,find是查找文件名。
比如grep ‘text‘ * 就是查找当前文件夹中所有包含“text”的文件
find -name ‘text‘ 就是查找一个叫text的文件。
find / -name "*Bluetooth*" 全盘搜索含有Bluetooth文字的文件名称。
find ./ -name "*Bluetooth*" 只是在当前目录下搜索含有Bluetooth文字的文件名称。
find -type d 列出其包含的所有目录
时间: 2024-10-18 03:25:01