aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/svpage
blob: 31c3d6dd786996255587554df1f461b9494f5741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

test "$1" || {
	echo "Syntax: ${0##*/} SERVICE"
	exit 1
}

test x"$1" = x"${1#*/}" -a x"$1" != x"." && {
	# has no slashes and is not a "."
	cd "/var/service/$1" || exit $?
	set -- "."
}

test -x "$1/page" && exec "$1/page"

cd "log/logdir" || exit $?

test "$PAGER" || PAGER=less
cat @* current | $PAGER