标签: bash shell unix
Unix shell命令的新功能。我需要回显当前目录中的文件谁的名字不以'cs'开头。
答案 0 :(得分:3)
shopt -s extglob # Enable extended globbing echo !(cs*)
答案 1 :(得分:0)
find . -maxdepth 1 -type f ! -regex ".*/cs.*"