tutorials:bash_scripting:part2
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:bash_scripting:part2 [2012/02/26 16:17] – rmiles | tutorials:bash_scripting:part2 [2017/10/12 21:58] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | //**3. Adding a GUI interface to a bash script**// | + | //**3. Adding a GUI interface to a bash script**//\\ |
+ | ---- | ||
GUI interfaces can be used with bash scripts. The script below uses //Zenity// to provide a GUI dialog for selecting an image to convert to .pdf, a second GUI dialog for naming and saving the newly created .pdf file and a third offering the option to delete the image file used to create the .pdf file. | GUI interfaces can be used with bash scripts. The script below uses //Zenity// to provide a GUI dialog for selecting an image to convert to .pdf, a second GUI dialog for naming and saving the newly created .pdf file and a third offering the option to delete the image file used to create the .pdf file. | ||
Line 54: | Line 55: | ||
The first line of this script uses a zenity command within two backticks to assign a file to the variable // | The first line of this script uses a zenity command within two backticks to assign a file to the variable // | ||
- | The script //con2pdf// in Section 1 either converted an image to a .pdf if a target image file was entered after the command //con2pdf// or it printed out the usage message and then returned to the command prompt if no target file was entered. However, in the //zenity// file selection dialog there are to user options, select a file or **Cancel**. It is necessary after this zenity command executes to check the exit code to see if the user has hit *Cancel* in which case the exit code would be 1. The following if statement should look familiar. | + | The script //con2pdf// in Section 1 either converted an image to a .pdf if a target image file was entered after the command //con2pdf// or it printed out the usage message and then returned to the command prompt if no target file was entered. However, in the //zenity// file selection dialog there are two user options, select a file or **Cancel**. It is necessary after this zenity command executes to check the exit code to see if the user has hit *Cancel* in which case the exit code would be 1. The following if statement should look familiar. |
<code bash> | <code bash> | ||
Line 62: | Line 63: | ||
</ | </ | ||
- | If a file has been selected and the user has pressed **OK** the script will continue on to the next line after the if/elif statement | + | If a file has been selected and the user has pressed **OK** the script will continue on to the next line after the if statement |
<code bash> | <code bash> | ||
Line 70: | Line 71: | ||
</ | </ | ||
- | Next the script creates a variable, // | + | Next the script creates a variable, // |
Another if statement is required in case the user hits the *Cancel* button. | Another if statement is required in case the user hits the *Cancel* button. | ||
Line 88: | Line 89: | ||
</ | </ | ||
- | However, in this script | + | However, in this script |
<code bash> | <code bash> | ||
Line 100: | Line 101: | ||
</ | </ | ||
- | The //zenity --guestion// | + | The //zenity --guestion// |
A case statement follows which evaluates the exit code and will either delete the file or exit the script accordingly. Case statements are handy for this type of task and are generally used instead of if statements when multiple options may be involved. Note the syntax as well as that a case statement must close with //esac//. | A case statement follows which evaluates the exit code and will either delete the file or exit the script accordingly. Case statements are handy for this type of task and are generally used instead of if statements when multiple options may be involved. Note the syntax as well as that a case statement must close with //esac//. | ||
---- | ---- | ||
- | There are other GUI dialog programs. KDE has //kdialog// which is based on the Qt toolkit, there is also //dialog//, // | + | //There are other GUI dialog programs. KDE has //kdialog// which is based on the Qt toolkit, there is also //dialog//, // |
- | + | ||
- | In the next section I'' | + | |
+ | In the next section I'' | ||
+ | ---- | ||
+ | **Cheers!** | ||
tutorials/bash_scripting/part2.1330233479.txt.gz · Last modified: 2017/10/12 21:58 (external edit)