about summary refs log tree commit diff
path: root/exman.sh
blob: f428e30cea28f4b343c416e592b4d179a87ebe7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
set -eu

die() {
	echo "$@" >&2
	exit 1
}

script=$0
path=${script%/*}
prefix=${path%/bin}
exman="${prefix}/share/exman"
[ -d "${exman}" ] || exman=$prefix

system=${1:-}
[ -n "${system}" ] || die 'What system do you want?'
shift

export MANPATH="${exman}/${system}"
[ -d "${MANPATH}" ] || die "No manuals for ${system}"

export MANSECT=
for sect in "${MANPATH}"/man*/; do
	sect=${sect%/}
	sect=${sect##*/man}
	MANSECT="${MANSECT:-}${MANSECT:+:}${sect}"
done

exec man "$@"
-13 15:53:41 -0500'>2018-11-13Add gzputc.3June McEnroe 2018-11-13Add gzgets.3June McEnroe 2018-11-13Add gzputs.3June McEnroe 2018-11-13Add gzprintf.3June McEnroe 2018-11-13Add gzfwrite.3June McEnroe 2018-11-13Add gzwrite.3June McEnroe 2018-11-12Add gzfread.3June McEnroe 2018-11-12Add gzread.3June McEnroe 2018-11-12Add gzsetparams.3June McEnroe 2018-11-12Add gzbuffer.3June McEnroe 2018-11-12Add gzdopen to gzopen.3June McEnroe 2018-11-12Add gzopen.3June McEnroe 2018-11-12Add inflateBackEnd.3June McEnroe 2018-11-12Add inflateBack.3June McEnroe 2018-11-12Add inflateBackInit.3June McEnroe 2018-11-11Add inflateGetHeader.3June McEnroe 2018-11-11Add inflateMark.3June McEnroe 2018-11-11Add inflatePrime.3June McEnroe 2018-11-11Add inflateReset.3June McEnroe 2018-11-11Add inflateCopy.3June McEnroe 2018-11-11Add inflateSync.3June McEnroe 2018-11-11Add inflateGetDictionary.3June McEnroe 2018-11-11Add inflateSetDictionary.3June McEnroe 2018-11-11Add inflateInit2.3June McEnroe