linux 查找文件里面内容,要找到当前目录以及子目录下,所有包含“test”这一字符串的文件,怎么输指令?

2024-11-26 04:47:46
推荐回答(2个)
回答1:

find . -name *test* -a -type -f

回答2:

find -name 'test' -a