Introduction to Shell programming
Unix/Linux command-line - One-liner "programs" at the command prompt (e.g. prog piped to prog).
Shell programming - Text file of multiple
Unix/Linux commands
(e.g. "if" condition then execute command, else other command).
The combination of one-liner command-line
plus multi-line
Shell programs
gives you
a programmable User Interface, where you can quickly write
short programs to automate repetitive tasks.
Shell program
is an interpreted program (not compiled, source code read at runtime).
Also known as a "Shell script" or "batch file".
(Windows command line has a similar concept of
.BAT files.)
Your bin directory
- We will write new Shell scripts.
- To run them they need to be in a directory that is in the PATH.
- In this course we will put them in $HOME/bin
- You need to create this dir and put it in the PATH.
- See Lab on Shell
to set up your environment for shell programming.
How to make a Shell program
- Edit a file in your bin directory.
- It can have any extension (in this course we will normally use no extension).
- Put Linux commands in it.
-
Make it executable:
$ chmod +x file
- Run it by typing its name:
$ file
$ file &
Alternative ways of working
- Pass program as arg to shell:
$ sh prog
Advantage: Does not have to be executable. Does not have to be in PATH.
Disadvantage: Have to type "sh" all the time.
Have to be in same directory (or else type more complicated path to program).
- Use file extension:
$ prog.sh
Advantage: Can easily see what the file is from a directory listing.
Disadvantage: Have to type the .sh
Could be used when no one ever types the name. (e.g. The script is only ever called by a program.)
A Shell program is different to something typed on the command-line.
It can have arguments, and can exit at any point.
$1 1st command-line argument
$2 2nd command-line argument
...
$* all arguments
# comment
exit exit the Shell script
exit 0 exit with a return code that other progs can query
$? return code of last prog executed
# test if 1st argument = "0"
if test "$1" = "0"
then
echo "yes"
else
echo "no - first argument is $1"
fi
|