| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function verify_getActions { |
| |
| case $OPTIONNAM in |
| |
| --packages ) |
| verify_requiredPackages |
| ;; |
| |
| --paths ) |
| verify_pathToCli |
| verify_pathToFonts |
| verify_pathToInkscape |
| ;; |
| |
| * ) |
| cli_printMessage "`gettext "The option provided is not valid."`" |
| |
| esac |
| |
| cli_printMessage "$(caller)" "AsToKnowMoreLine" |
| |
| } |
| |