Danny,<br><br>You can 'draw' a screen using a clear command and some print or echo/print commands like so:<br><br>clear<br>print "************************************************"<br>print "** Hello "$LOGNAME" **"<br>print "** Please select 1 to do something **"<br>print "** Please select 2 to do something else **"<br>print "************************************************"<br><br>The menu can be done with a 'select' statement, Your PS3 prompt and a do loop like so:<br><br>PS3='Enter Choice? '<br><br>select choice in 'Something' 'Something else' <br><br>do<br> case $REPLY in<br> 1 ) something_func ;;<br> 2 ) somethingelse_func ;;<br> x ) break ;;<br> * ) print "Invalid choice. Please try again." ;;<br> esac<br>done<br><br>The select statement builds a menu for you, the REPLY holds the user's answer. If '1' is pressed the something_func is preformed, if '2' is pressed the somethingelse_func is performed, 'x' will terminate the script (as well as <cntl> d), If anything else is entered, the wild card '*' will pick it up and display the "Invalid choice" message. The PS3 prompt is used by the select statement to prompt the user. <br><br>I hope I haved answered your question!<br> <p>Christopher Devenny<br><a href=mailto:c_devenny@yahoo.com>c_devenny@yahoo.com</a><br><a href= > </a><br>