| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function help_getActions { |
| |
| help_checkLanguageLayout |
| |
| case $OPTIONNAM in |
| |
| --search ) |
| help_searchIndex |
| ;; |
| |
| --edit ) |
| help_editEntry |
| ;; |
| |
| --remove ) |
| help_removeEntry |
| ;; |
| |
| --update ) |
| help_updateOutputFiles |
| ;; |
| |
| --read ) |
| help_searchNode |
| ;; |
| |
| * ) |
| cli_printMessage "`gettext "The option provided is not valid."`" |
| cli_printMessage "$(caller)" "AsToKnowMoreLine" |
| ;; |
| |
| esac |
| |
| } |