The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-17-2008
fabtagon fabtagon is offline
Registered User
 

Join Date: Apr 2008
Location: European Union/Germany
Posts: 183
What do you mean by "make my menu run"? What errors do you get? Do you have a problem starting it like

Code:
me@mybox$ mymenu.sh
Therefore you have to set proper rights, e.g. execute-bit (chmod 755 mymenu.sh). First line of your program must be "#!/bin/bash". If your current working dir is not in your $PATH (preferred) you must start via

Code:
me@mybox$ ./mymenu.sh
Reply With Quote