Skip to content

Instantly share code, notes, and snippets.

@arnolddevos
Created November 4, 2012 09:46
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 arnolddevos/4010947 to your computer and use it in GitHub Desktop.
Save arnolddevos/4010947 to your computer and use it in GitHub Desktop.
understand shell quoting
decorate() {
for f in "$@"
do
echo -n "[$f] "
done
echo
}
decorate() {
for f in "$@"
do
echo -n "[$f] "
done
echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment