| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function texinfo_searchIndex { |
| |
| |
| |
| if [[ ! -f ${MANUAL_BASEFILE}.info.bz2 ]];then |
| texinfo_updateOutputFiles |
| fi |
| |
| |
| cli_printMessage '-' --as-separator-line |
| |
| |
| cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-reading-line |
| |
| |
| /usr/bin/info --index-search="$FLAG_SEARCH" --file=${MANUAL_BASEFILE}.info.bz2 |
| |
| } |