3
删除除一种(或多种)文件类型外的所有文件类型
我一直在试图找到一个命令来删除文件夹中的所有文件,但不是一种文件类型。但是我似乎没有任何运气。到目前为止我尝试过的是: set extended_glob rm !(*.dmg) # this returns zsh:number expected rm ./^*.dmg # this returns no matches found 我正在使用的zsh版本是zsh 5.0.2 (x86_64-apple-darwin13.0.1)。