aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/sview
diff options
context:
space:
mode:
Diffstat (limited to 'examples/var_service/sview')
-rwxr-xr-xexamples/var_service/sview19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/var_service/sview b/examples/var_service/sview
new file mode 100755
index 000000000..716c1079c
--- /dev/null
+++ b/examples/var_service/sview
@@ -0,0 +1,19 @@
1#!/bin/sh
2
3test "$1" || {
4 echo "Syntax: ${0##*/} SERVICE"
5 exit 1
6}
7
8test x"$1" = x"${1#*/}" -a x"$1" != x"." && {
9 # has no slashes and is not a "."
10 cd "/var/service/$1" || exit $?
11 set -- "."
12}
13
14test -x "$1/view" && exec "$1/view"
15
16cd "log/logdir" || exit $?
17
18h=`ttysize h`
19exec tail -n $((h-1)) -F current 2>&1