想查找一个包含4000多文件的目录下所有.sh结尾的文件
使用命令 find ./ -name *.sh (本身已经在要查找的目录里了)
结果报错:
解决方法一:find ./ -name \*.sh (将.sh转义)
解决方法二:find ./ -name "*.sh"