Skip to content

Instantly share code, notes, and snippets.

@mwalling
Created March 11, 2011 22:47
Show Gist options
  • Save mwalling/866721 to your computer and use it in GitHub Desktop.
Save mwalling/866721 to your computer and use it in GitHub Desktop.
mwalling@youtoo:~/blah$ for i in `seq 1 10`; do touch file$i; done
mwalling@youtoo:~/blah$ ls
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
mwalling@youtoo:~/blah$ echo .
.
mwalling@youtoo:~/blah$ echo *
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
mwalling@youtoo:~/blah$ zsh
youtoo% pwd
/home/mwalling/blah
youtoo% echo .
.
youtoo% echo *
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
youtoo%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment