aboutsummaryrefslogtreecommitdiff
path: root/aux/checks/manpages.sh
blob: 204d960995daa4957f4b26a26a879dd5e2a98f93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
set -eu

while getopts 'h' flag; do
	case "$flag" in
		h)
			usage
			help
			exit
			;;
		*)
			exit 2
			;;
	esac
done
shift $((OPTIND - 1))

. aux/lib.sh


# FIXME