Chapter 15. Adding Color to Scripts
IN THIS CHAPTER
Creating text menus
Making scripts colorful
Text windows widgets
Using X Windows graphics
Over the years, shell scripts have acquired a reputation for being dull and boring. This doesn't have to be the case, though, if you plan on running your scripts in a graphical environment. There are plenty of other ways to interact with your script user other than using the read and echo statements. This chapter dives into a few different methods you can use to help add life to your interactive scripts so that they don't look so old-fashioned.
Creating Text Menus
The most common way to create an interactive shell script is to utilize a menu. Offering your customers a choice of various options helps guide them through exactly what the script can and can't do.
Menu scripts usually clear the display area, then show a list of options available. The customer can select an option by pressing an associated letter or number assigned to each option. Figure 15-1 shows the layout of a sample menu.
The core of a shell script menu is the case command (see Chapter 9). The case command performs specific commands, depending on what character your customer selects from the menu.
The following sections walk you through the steps you should follow to create a menu-based shell script.

Figure 15.1. Displaying a menu from a shell script
Create the menu layout
The first step ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access