Skip to content

Instantly share code, notes, and snippets.

@glyph
Created March 8, 2015 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glyph/aa924c45e99550e09246 to your computer and use it in GitHub Desktop.
Save glyph/aa924c45e99550e09246 to your computer and use it in GitHub Desktop.
created by github.com/tr3buchet/gister
$ touch 'a b' c d
$ for c in `echo *`; do echo "$c"; done
a
b
c
d
$ for c in `echo "*"`; do echo "$c"; done
a b
c
d
$ echo *
a b c d
$ echo "*"
*
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment