Created
November 17, 2013 22:35
-
-
Save pbrewczynski/7519173 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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