#!/bin/ksh #------------------------------------------------------------------------ # mkt #------------------------------------------------------------------------ # Script zum erzeugen eines 24 Bit Tiff Files und Schreiben ins File # /tmp/user_datum.tif # # # Start in aixterm: mkt (n) # (aixterm so klein wie moeglich am rechten Rand plazieren) # # CONTRAVES SPACE AG 8.08.2000 Inderbitzin # AENDERUNGEN: 28.06.01 # Parameter n (none): Background wird nicht auf # weiss gesetzt # #------------------------------------------------------------------------ tdat=`date +"%m%d_%H%M%S"` wfile="/tmp/"$USER"_$tdat.tif" if [ -z "$1" ] then /usr/lpp/kapture/bin/kgrab -region /tmp/xgrab.$USER /usr/lpp/kapture/bin/kview -white /tmp/xgrab.$USER /usr/lpp/kapture/bin/kexport -t24 -white /tmp/xgrab.$USER $wfile else /usr/lpp/kapture/bin/kgrab -region /tmp/xgrab.$USER /usr/lpp/kapture/bin/kview /tmp/xgrab.$USER /usr/lpp/kapture/bin/kexport -t24 /tmp/xgrab.$USER $wfile fi