Exit Wiki

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

Shell Script Knowledge (last edited 2006-12-11 16:59:04 by RyanWilcox)