Shell programming

Status
Not open for further replies.

desertwind

Cyborg Agent
the command is sh itself. you can invoke the program by its name itself if it has execute permissions.
Code:
$ sh abc.sh
$ ./abc.sh
the first one will work for any .sh file. The second one works only if the file is executable.
 

desertwind

Cyborg Agent
For basic shell programming *www.tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html
is a good tutorial.
*www.tldp.org/LDP/abs/html/ is good for advanced one.

You'll find millions of results googling
*www.google.com/linux?q=shell+programming
 
Status
Not open for further replies.
Top Bottom