This lesson extends the lesson on the bash shell for anyone who wants to dive deeper into how to use the commandline productively. It is optional.
The real power of the shell lies in the fact that one can combine multiple shell commands and in this way automate pretty much any task that operates on files and directories. The two major ways to combine shell commands are
- pipes, filters, and redirection
 - shell scripts
 
“Pipes” feed the output from one command to the input of another command and in this way combine multiple tools for filtering data.
“Scripts” are text files that contain multiple commands (including pipes). Executing the file will the nexecute all the commands, without having to type them repeatedly. The bash shell is actually a complete programming language and one can accomplish rather complicated tasks with it.
Additionally, command completion (“TAB-completion”) and wildcards enable fast interactive work.
The following is very useful but for right now not essential and is optional. You can work through the tutorial in your own time.
Table of contents
If you want to dive much deeper into bash then start reading the Advanced Bash-Scripting Guide, an “in-depth exploration of the art of shell scripting”.
Pipes and Filters
Commands
catheadtaillesswcsortuniqcutandpastegrep
and special shell characters
|(“pipe”, joins commands together)>(redirects output to a file)<(redirects file to input)
Activity Working with redirection and command pipelines
Download planets.dat1 and put it in the directory data/. You can do this with your web browser or if you have the curl program installed, try
curl https://py4phy.github.io/PHY432/assets/data/planets.dat -O(all on one line).
Output the whole file to the screen:
cat planets.datLook at the first three lines of the file
head -3 planets.datshould give
Alderaan             12500  grasslands/mountains
Yavin_IV             10200  jungle/rainforests
Hoth                  7200  tundra/icecaves/mountainranges
Count the number of planets
wc planets.dat      60     180    2944 planets.dat
Make a file in which all planets are duplicated:
cat planets.dat planets.dat > planets_2.dat(cat concatenates files and then you redirect it to a new file.)
Activity Counting planets
- Test that 
wc -lgives just the number of lines (“60”). - What does 
wc planets.dat planets_2.datdo? - What happens when you do 
wc < planets.dat? - Run 
wcthen type any number of lines of text (pressing enter to terminate each line) and when you get bored, press^D(control+D). What happened? 
Pipes
Sort by name and look at the first five using a pipes and filters:
sort planets.dat | head -5Sort by diameter (-k2,2 is column 2 and numeric sort -n), biggest first (-r reverse sort), and write the top 3 to a file biggest_planets:
sort -k2,2 -n -r planets.dat | head -3 > biggest_planetsCount the number of planets with unknown diameter:
grep "unknown" planets.dat | wc -lGet the first letter of each planet name and sort alphabetically:
cut -b 1,1 planets.dat | sortGet the terrain types
cut -b 29-  planets.datActivity Finding the rebel base planet
- Count the number of planets in 
planets_2.dat. - Find planets where the rebel might have a base (hint: you know it’s cold there… use 
grep). How many planets will you investigate more closely? Write the list to the filebases. - How many unique terrain types are there? (Hint: 
uniqneeds a sorted list as input) - What is the most frequent and the least frequent first letter amongst these planets? (Hint: 
uniq -c) 
  Using git to get data for the class
git is a version control software and we will come back to explain its main functionality later. Right now we use it as a convenient tool to get additional data.
There is a “repository” at https://github.com/Py4Phy/PHY432-resources that contains data and code to be used during the class. It will be updated as we go along.
Get the data for the following exercies by cloning the repository:
cd ~
git clone https://github.com/Py4Phy/PHY432-resources
(You only need to do this once.)
At any later time, pull in the latest updates from inside the repository::
cd PHY432-resources
git pull
(This can be done as often as you like.)
Go into the PHY432-resources/01_shell/data directory.
Activity Analyze Star Wars™ characters
Read the
READMEfile (e.g. usingcodeorcatorless(for the latter, usehto get help andqto quit)).Count the number of entries in all files ending in “csv”. (Hint: use a glob pattern)
Use
cut -f 1 -d ',' people.csvto extract each name to a filenamesand a similar command to extract weight to a fileweights.Use the
pastecommand to generate a new list that contains “weight name” (reordered and separated by space):paste weights namesUse this approach to sort the people in order of decreasing weight.
Shell scripts
You can save commands in a file. This is called a script. A script allows you to reuse commands (laziness is a programmer’s virtue!) without having to retype them over and over again. It also allows you to solve a task once and then forget about how you did it in detail because it is written in the script.
Make directory ~/bin for your scripts in your home directory.
mkdir ~/bin(I strongly suggest you do this really in your home directory because in the following I will assume it; if you changed the path to e.g. ~/classes/2022/PHY432/bin then you will need to use that path in all the following examples.)
Usingcode, create the following script ~/bin/update_resources.sh:
# PHY 432 script to update the resources repository
GIT_REPOSITORY="${HOME}/PHY432-resources"
cd "${GIT_REPOSITORY}"
git pull
echo "Updated resources in ${GIT_REPOSITORY}"(You create the script by (1) code ~/bin/update_resources.sh (opens empty file if it does not exist), (2) type all the lines into the editor (or copy & paste), (3) save the file and exit the editor.)
Notes:
All the lines above should be in your file (first line will start with
# PHY 432and the last line will begin withecho).The line starting with
#is a comment: it is not a shell command and is ignored by the shell. However, adding comments to scripts is a really, really good idea!The shell has variables: Some like
HOMEare pre-defined, others you can define yourself (GIT_REPOSITORY=...). Using all-caps is a convention that you should follow.The contents (value) of variables is accessed with the dollar
$sign in front of the variable name.echoprints to the standard output (typically, the screen)
Execute the script with
bash ~/bin/update_resources.shIt should show output similar to
Already up-to-date.
Updated resources in /Users/oliver/PHY432-resources
However, during the course of the year more data will be added to the repository and then you can just run your update command to get the data and you might see output like the following:
remote: Counting objects: 15, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 15 (delta 2), reused 15 (delta 2), pack-reused 0
Unpacking objects: 100% (15/15), done.
From https://github.com/Py4Phy/PHY432-resources
   c3b5c04..23a4083  master     -> origin/master
Updating c3b5c04..23a4083
Fast-forward
 01_shell/bin/update_resources.sh | 8 ++++++++
 02_python/gutentag.py            | 4 ++++
 2 files changed, 12 insertions(+)
 create mode 100644 01_shell/bin/update_resources.sh
 create mode 100644 02_python/gutentag.py
Updated resources in /Users/oliver/PHY432-resources
Footnotes
Star Wars data courtesy of SWAPI. See PHY494-auxilliary/star_wars for Python code to pull the data from SWAPI. ↩