Zsh Extended Glob
*
,?
: same with.*
and.
in regular expression.[[:digit:]]
,[^[:digit:]]
: char class.<x-y>
: number in the range x to y, inclusive.##
#
: similar to the+
and*
in regular expression.(...)
: groupx|y
: x or yx-y
: x but not y^x
: not x