head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	93.08.02.16.00.08;	author czyborra;	state Exp;
branches;
next	1.1;

1.1
date	93.08.02.15.47.05;	author czyborra;	state Exp;
branches;
next	;


desc
@nearsun backend
@


1.2
log
@second revision using xditview
@
text
@#! /bin/sh
# mktable - Backend fr nearsun, setzt eine schne Tabelle

table () {
	echo .TS
	echo 'allbox,tab ( );'
	echo 'cb cb cb cb s  s'
	echo 'c  r  c  r  r  r.'
	echo 'Host uptime users load'
	cat | sed s/,//g | cut -d\  -f1,3-4,7-9
	echo .TE
}

table | tbl | ditroff -Tpsc -t - | xditview -geometry 500x500 -resolution 100 -

@


1.1
log
@Initial revision using ghostview
@
text
@d14 2
a15 3
trap 'rm $TABLE' 0 1 2 3 15
table | rof -ft -t > $TABLE
ghostview $TABLE
@
