linux 查找目录或者文件内容

find / -name *.txt  #查找所有以txt结尾的文件
find .|xargs grep -ri "656122" -l   #按照文件内容查找, 并列出文件名字

你可能感兴趣的:(linux,技术,Linux)