Cookie Consent by Free Privacy Policy Generator Update cookies preferences Exercises - The Shell Scripting Tutorial

The Shell Scripting Tutorial


Exercises

Just a quick exercise I think might be useful in working out how good you are at shell scripting...

Addressbook

Okay, it's boring, but here's your exercise for today:
Create an addressbook program using the bourne or bourne-again shell.
It should use functions to perform the required tasks. It should be menu-based, allowing you the options of:

  • Search address book
  • Add entries
  • Remove / edit entries

You will also need a "display" function to display a record or records when selected.

Search

When the user searches for "Smith", the script should identify and display all "Smith" records. It is up to you whether this search is in Surname only, or in the entire record.

Add

Input the data (Name, Surname, Email, Phone, etc).
If it appears to be a duplicate, for bonus points offer to edit the existing record.
Save the record into the data file when the user confirms.

Remove

Enter search criteria, narrow it down to one, confirm, then remove that record.

Edit

As remove, but use the existing record for default entries.
For example, if you change the phone number, the session may look like this, if you only want to change John Smith's Phone Number:
          Name [ John Smith ]
          Phone [ 12345 ] 54321
          Email [ joe@smith.org.uk ]

Remove the old record, and add the new one. Alternatively, edit the existing record, though this may be more difficult.

Bonus Points

  • Allow for cancel options (use "special" entries (^d, CR, ^c, etc))
  • Add "Confirm" option.
  • Offer interactive / non-interactive modes. (ie, a menu-based version and a command-line (CLI)-based option.
  • Play with getopt for CLI version.

Hints / Things to think about

  • Suggested record format: Use colons to separate fields.
    John Smith: 54321:john@smith.example.com
  • That way you can use "cut -d:" to read fields.
  • Think about using IFS as an alternative to this method.
  • Think about using space (" ") to separate fields, and convert any spaces in the input to underscores ("_") then convert them back again for display.

One answer I came up with is below; don't read unless you're stuck!
main file
library file

Directory Traversal

Create a shell script to traverse through a filesystem tree.


Example answers here:

example


  Previous: Interactive Shell

My Paperbacks and eBooks

My Shell Scripting books, available in Paperback and eBook formats. This tutorial is more of a general introduction to Shell Scripting, the longer Shell Scripting: Expert Recipes for Linux, Bash and more book covers every aspect of Bash in detail.

Shell Scripting Tutorial

Shell Scripting Tutorial
is this tutorial, in 88-page Paperback and eBook formats. Convenient to read on the go, and in paperback format good to keep by your desk as an ever-present companion.

Also available in PDF form from Gumroad:Get this tutorial as a PDF
Shell Scripting: Expert Recipes for Linux, Bash and more

Shell Scripting: Expert Recipes for Linux, Bash and more
is my 564-page book on Shell Scripting. The first half covers all of the features of the shell in every detail; the second half has real-world shell scripts, organised by topic, along with detailed discussion of each script.