find . -type f -exec grep 'test.com' -l {} /;
查找当前目录和子目录包含test.com内容的文件,列表显示。
find . -name '*.xml'
查找当前目录和子目录下,以.xml为结尾的文件名的文件。
find . -name '*.xml' -exec grep 'Customer' -l {} /;
查找当前目录和子目录中,以.xml结尾的文件中包含'customer'字符的文件并列出。
find . -type f -exec grep 'test.com' -l {} /;
查找当前目录和子目录包含test.com内容的文件,列表显示。
find . -name '*.xml'
查找当前目录和子目录下,以.xml为结尾的文件名的文件。
find . -name '*.xml' -exec grep 'Customer' -l {} /;
查找当前目录和子目录中,以.xml结尾的文件中包含'customer'字符的文件并列出。