Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Extended Globbing in Bash
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Enable Extended Globbing
shopt -s extglob
Or you can run bash with the option -O extglob
.
/bin/bash -O extglob -c "your command to run"
Set Shell to be Bash with …
Hands on the Python module glob
Comment¶
pathlib.Path.glob is preferred to the
glob
module!!The list returned is not sorted.