Skip to content

Instantly share code, notes, and snippets.

@nelhage
Created July 19, 2013 21:35
Show Gist options
  • Save nelhage/6042538 to your computer and use it in GitHub Desktop.
Save nelhage/6042538 to your computer and use it in GitHub Desktop.
bash globbing
[nelhage@aeronautique:~]$ echo hello?
hello?
[nelhage@aeronautique:~]$ shopt -s failglob
[nelhage@aeronautique:~]$ echo hello?
bash: no match: hello?
[nelhage@aeronautique:~]$ shopt -s nullglob
[nelhage@aeronautique:~]$ shopt -u failglob
[nelhage@aeronautique:~]$ echo hello?
[nelhage@aeronautique:~]$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment