Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created November 17, 2013 22:35
Show Gist options
  • Save pbrewczynski/7519173 to your computer and use it in GitHub Desktop.
Save pbrewczynski/7519173 to your computer and use it in GitHub Desktop.
root@debian:/home/pawel/bash/wildcardTest# ls
root@debian:/home/pawel/bash/wildcardTest# *
bash: *: command not found
root@debian:/home/pawel/bash/wildcardTest# echo *
*
root@debian:/home/pawel/bash/wildcardTest# ls
root@debian:/home/pawel/bash/wildcardTest# touch someFile
root@debian:/home/pawel/bash/wildcardTest# touch otherFile
root@debian:/home/pawel/bash/wildcardTest# ls
otherFile someFile
root@debian:/home/pawel/bash/wildcardTest# *
bash: otherFile: command not found
root@debian:/home/pawel/bash/wildcardTest#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment