On OS X and other unix variants, using the shell is sometimes the easiest way to get a Quick And Dirty task done.
Difference between single quotes and double quotes
echo "your path is $PATH" echo 'your path is $PATH'
Will return
your path is /bin/:/sbin/.... your path is $PATH
Comments:
Add comments by visiting: Shell Script Knowledge/Comments