标签:style sp 文件 on bs ad size type nbsp
grep是查找文件内的内容,find是查找文件名。
比如grep ‘text‘ * 就是查找当前文件夹中所有包含“text”的文件
find -name ‘text‘ 就是查找一个叫text的文件。
find / -name "*Bluetooth*" 全盘搜索含有Bluetooth文字的文件名称。
find ./ -name "*Bluetooth*" 只是在当前目录下搜索含有Bluetooth文字的文件名称。
find -type d 列出其包含的所有目录
标签:style sp 文件 on bs ad size type nbsp
原文地址:http://blog.csdn.net/eoeandroida/article/details/40980665