I rewrote that script from earlier because I like being able to make my own 
decision as to what the iso's file name is going to be.

Pardon the bad formatting of the script, i'm a more of a network/OS guy and 
i'm just diving into scripting.  I am enjoying using bash and sed, but what 
i really want to learn is perl, php, and python.

Here it is John
This should work ;)
=-=-=-=-=-=-=-=-=-=-
#!/bin/sh
# makeiso.sh
#when it asks you what you want to call the file
#don't put the .iso on the end, it will do that on it's own

question="What do you want the iso to be named:"

askme ()
{
echo -n $question
read ANSWER
}

askme

echo Creating ISO image called "$ANSWER".iso...
mkisofs -R -J -l "$1" > "$ANSWER.iso"

=-=-=-=-=-=-=-=-=-=-

Adam J. Melancon


_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


Reply via email to