/从当前目录及其子目录下查找含有指定内容的文件
find ./ "*.*" -exec grep -l "ABC" {} |;
//查找特定文件
find ./ -name "ABC" -type -f -depth