In our last article, we went over some easy-to-use tricks to make simple but useful shell scripts. Now we’ll dive in a little more and add some intelligence to them.

Using Conditionals

If you remember the script we wrote last time, it ran a series of commands that used Pandoc to generate four versions of a Markdown document (in each of HTML, DOCX, ODT, and ePub). But this was all or nothing… either we used Pandoc itself to make them one at a time, or else all of them. What if we wanted to pick and choose?

This is simple using Conditionals, which are basically “if X is this, then do this” statements. Let’s take a look at the script as we had it:

Suppose we want to be able to pick one of the above items at the command line, or do all of them. A quick modification to the pandoc-pub.sh script like so will accomplish just that:

The first thing we did here is to give the two variables we want from the command line names: file (which is the Markdown source file), and export (which is the format we want to export to. So now we can pick and choose what we want to generate by using:

But what about the whole shebang? We could do that last time, but not now? Well, if we think ahead a little, we should account for a case where we (or another user) enters something besides the four choices above – in this case, why not export everything? Add one more bit of code as follows:

Now, if we enter nothing after the filename at the command line (or the wrong thing), this script will just do the safe thing and generate all the formats.

Adding a GUI

But what if, in this last case, you don’t want it to just generate everything, but do something more helpful. We could add another

statement to generate all formats when “all” is entered at the command line, and change the statement to print some help text:

But it will be more useful that, in the event of a blank or incorrect flag, we display a GUI to help the user along. First, we’ll need to install a set of tools called Zenity to help us. You can install this from the Software Centre, or use the following command:

Next, we’ll need to use Zenity to create a dialog for us. We’ll want something where the user can select all or some of the options we have available… checkboxes sounds like the right thing here. So we create a Zenity dialog with checkboxes representing all of our options:

You can see how the above Zenity command is constructed by reading the manual here. Next, we need to get the list of whatever the user checks, and assign it to a variable. Adding a variable name, and wrapping the Zenity command in parentheses, and adding a “$” sign will tell the shell to replace the command inside with its result when it’s done:

Now we have a variable “$choices” that contains a list (separated by “|” by default) of all the options selected. We’ll need to check to see if that list contains any of the formats we’re planning to handle using “=~” instead of “==” (this checks to see if something contains something else, in this case)… for example:

Lastly, a quick modification of the script will show this dialog when no format is provided, then run the appropriate Pandoc command when that option is checked in the dialog:

Just like that, a personalized application with GUI and command-line options.

Aaron is an interactive business analyst, information architect, and project manager who has been using Linux since the days of Caldera. A KDE and Android fanboy, he’ll sit down and install anything at any time, just to see if he can make it work. He has a special interest in integration of Linux desktops with other systems, such as Android, small business applications and webapps, and even paper.

Our latest tutorials delivered straight to your inbox