Shell Scripts
Overview
Questions
How can I save and re-use commands?
Objectives
Write a shell script that runs a command or series of commands for a fixed set of files.
Run a shell script from the command line.
Write a shell script that operates on a set of files defined by the user on the command line.
Create pipelines that include shell scripts you, and others, have written.
We are finally ready to see what makes the shell such a powerful programming environment. We are going to take the commands we repeat frequently and save them in files so that we can re-run all those operations again later by typing a single command. For historical reasons, a bunch of commands saved in a file is usually called a shell script, but make no mistake — these are actually small programs.
Not only will writing shell scripts make your work faster, but also you won’t have to retype the same commands over and over again. It will also make it more accurate (fewer chances for typos) and more reproducible. If you come back to your work later (or if someone else finds your work and wants to build on it), you will be able to reproduce the same results simply by running your script, rather than having to remember or retype a long list of commands.
Let’s start by going back to alkanes/
and creating a new file, middle.sh
which will become our shell script:
cd alkanes
module load nano
nano middle.sh
The command nano middle.sh
opens the file middle.sh
within the text editor ‘nano’ (which runs within the shell). If the file does not exist, it will be created. We can use the text editor to directly edit the file by inserting the following line:
head -n 15 octane.pdb | tail -n 5
This is a variation on the pipe we constructed earlier, which selects lines 11-15 of the file octane.pdb
. Remember, we are not running it as a command just yet; we are only incorporating the commands in a file.
Then we save the file (Ctrl-O
in nano) and exit the text editor (Ctrl-X
in nano). Check that the directory alkanes
now contains a file called middle.sh
.
Once we have saved the file, we can ask the shell to execute the commands it contains. Our shell is called bash
, so we run the following command:
bash middle.sh
Sure enough, our script’s output is exactly what we would get if we ran that pipeline directly.
TEXT VS. WHATEVER
We usually call programs like Microsoft Word or LibreOffice Writer “text editors”, but we need to be a bit more careful when it comes to programming. By default, Microsoft Word uses .docx
files to store not only text, but also formatting information about fonts, headings, and so on. This extra information isn’t stored as characters and doesn’t mean anything to tools like head
, which expects input files to contain nothing but the letters, digits, and punctuation on a standard computer keyboard. When editing programs, therefore, you must either use a plain text editor or be careful to save files as plain text.
You can do a lot more with shell scripts, however this is enough to create PBS job scripts (covered later)
DOS2UNIX
If you create a text file in Windows it is likely the line endings will be Carriage-Return Line-Feed (CRLF). Linux uses LF line endings. If you bring a script created on Windows to the HPC, run the command:
This will convert any line endings to LF so it will work on the HPC.