home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #################################################
- # #
- # File: dldhelp #
- # Authors: Niels Mache, Ngo Than #
- # Last change: 17ARPRIL1997 #
- # #
- # DLD - German Linux Distribution - #
- # #
- # Copyright (c) 1993-1997 delix Computer GmbH #
- # Schlo▀stra▀e 98 #
- # D-70176 Stuttgart #
- # All rights reserved. #
- # #
- #################################################
-
- RootDir=/usr/adm/setup
- TITLE="DLD Hilfe"
-
- [ "$TERM" = "xterm" ] && export TERM="color_xterm"
- DLDVersion="5.2"
- DIALOGTITLE=" DLD $DLDVersion (C) 1993-1997 by delix GmbH, Schlo▀str. 98, 70176 Stuttgart, Germany"
-
- mydialog() {
- dialog --shadow --backtitle "$DIALOGTITLE" "$@"
- }
-
- if [ -f $RootDir/hilfe.hlp ]; then
- mydialog --title "$TITLE" --textbox $RootDir/hilfe.hlp 20 74
- elif [ -f $RootDir/hilfe.hlp.gz ]; then
- cp $RootDir/hilfe.hlp.gz /tmp
- gzip -d /tmp/hilfe.hlp.gz
- mydialog --title "$TITLE" --textbox /tmp/hilfe.hlp 20 74
- rm -f /tmp/hilfe.hlp
- else
- mydialog --title "Fehler:" --msgbox \
- "File $RootDir/hilfe.hlp nicht gefunden" 6 40
- fi
-