blob: b52e4e84a9abc298043b095be94e5bb7cbaee0cd (
plain) (
tree)
|
|
# -*- shell-script -*-
#DESCRIPTION: Open a programs info manual and open the invoking chapter
#USAGE: iv [program]
iv () {
__texinfo="$1"
shift 1
info "(${__texinfo})" invoking "$@"
unset __texinfo
}
#DESCRIPTION: Open a programs info manual and try to select a usage page
#USAGE: iu [program] [node]
iu () {
info --usage "$@"
}
#DESCRIPTION: Open a programs info manual
#USAGE: i [program] [node]
i () {
__texinfo="$1"
shift 1
info "(${__texinfo})" "$@"
unset __texinfo
}
|