Skip to content

Instantly share code, notes, and snippets.

@jeffreyiacono
Created November 8, 2012 18:27
Show Gist options
  • Select an option

  • Save jeffreyiacono/4040594 to your computer and use it in GitHub Desktop.

Select an option

Save jeffreyiacono/4040594 to your computer and use it in GitHub Desktop.
fun with bash special chars
#!/bin/sh
echo "you passed me $# args"
echo "pid = $$"
echo "and I am $0"
for a in $@
do
echo $a
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment