Click Here to buy the full 72-page PDF for only £4.99, $9.99 or €6.99,
or the Kindle eBook (UK here - more countries and details here)

17. 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
Click Here to buy the full 72-page PDF for only £4.99, $9.99 or €6.99,
or the Kindle eBook (UK here - more countries and details here)

Steve's Bourne / Bash shell scripting tutorial
Share on Twitter Share on Facebook Share on LinkedIn Share on Identi.ca Share on StumbleUpon

Get the Book:

My Shell Scripting Book:
    Shell Scripting, Expert Recipes for Linux, Bash and more
is available online and from all good booksellers.

Buy my 600-page Shell Scripting Book...
DefectiveByDesign.org
From Amazon USA:

From Amazon UK:

For Kindle:

DefectiveByDesign.org
Or from other retailers

Facebook:

You can also join a Shell Scripting community on Facebook:



Get the Tutorial as a PDF:

Shell Scripting Tutorial
Buy the 72-page PDF (£4.99 / $9.99 / €6.99) of this tutorial
(Free Sample)

Get the Tutorial on Kindle:

For Kindle from Amazon USA:
For Kindle from Amazon UK:

And you can always Download my Free Shell Scripting Cheatsheet PDF

DefectiveByDesign.org