bash extglob
by jt1122 from LinuxQuestions.org on (#6GNQM)
from the bash extglob man page: "?(pattern-list) Matches zero or one occurrence of the given patterns"
Code:touch a b; echo ?(a)
aif ? matches 0 or 1 occurrences why isn't b also shown?
Thanks
Code:touch a b; echo ?(a)
aif ? matches 0 or 1 occurrences why isn't b also shown?
Thanks