Robert Goley wrote (Mon 2004-Dec-20 09:31:43 -0500): > wrapper script using sudo. An example script is below. .. > sudo cdrecord $@
I strongly suggest using "$@" instead of [EMAIL PROTECTED] "$@" is equivalent to "$1" "$2" "$3"... while $@ is equivalent to $1 $2 $3... See "man bash" for details, look for "Special Parameters". Cheers, Marcus P.S.: Lots of tofu around here lately... -- Marcus C. Gottwald � http://www.inf.fu-berlin.de/~gottwald/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

