| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function texinfo_deleteEntry { |
| |
| |
| cli_printMessage '-' --as-separator-line |
| |
| |
| |
| if [[ ${MANUAL_SECT[$MANUAL_DOCENTRY_ID]} != '' ]];then |
| |
| |
| |
| |
| |
| |
| |
| texinfo_deleteEntrySection |
| |
| elif [[ ${MANUAL_CHAP[$MANUAL_DOCENTRY_ID]} != '' ]];then |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| texinfo_deleteEntryChapter |
| |
| elif [[ ${MANUAL_DIRN[$MANUAL_DOCENTRY_ID]} != '' ]];then |
| |
| |
| |
| |
| |
| texinfo_deleteEntryManual |
| |
| else |
| cli_printMessage "`gettext "The parameters you provided are not supported."`" --as-error-line |
| fi |
| |
| |
| } |