linux各种查找
摘要:
查找包含字符串的文件:find / -name "*.php" | xargs grep "getQueue" ; 查找包含特定字符串的文件名:find / -type f | grep "Model" 查找包含特定字符串的目录:find / -type d | grep "Model" 查找 /p 阅读全文
posted @ 2013-03-26 12:20 andydaopeng 阅读(165) 评论(0) 推荐(0) 编辑