Bash / Shell Echo Globbing Pattern

时间:2011-09-18 18:21:24

标签: bash shell unix

Unix shell命令的新功能。我需要回显当前目录中的文件谁的名字不以'cs'开头。

2 个答案:

答案 0 :(得分:3)

shopt -s extglob # Enable extended globbing
echo !(cs*)

答案 1 :(得分:0)

find . -maxdepth 1 -type f ! -regex ".*/cs.*"