home *** CD-ROM | disk | FTP | other *** search
/ Chip 1994 February / CHIP0294.ISO / digital / test / linux / bootdisk / rootdisk.18 / usr / lib / LST / SelZusatz < prev    next >
Encoding:
Text File  |  1994-06-12  |  694 b   |  30 lines

  1. #!/bin/sh
  2. export PATH=/LSTLIB:$PATH
  3.  
  4. . $TEXTCONSTANTS
  5.  
  6. TMPDIR=/LSTLIB/tmp
  7.  
  8. dialog --title "Auswahl der Zusatzpakete" --checklist \
  9. "\n\
  10. WΣhlen Sie mit der Leertaste fⁿr jede Serie, ob Sie diese \n\
  11. installieren m÷chten oder nicht. \n\
  12. Wenn Sie Ihre Auswahl beendet haben, drⁿcken Sie die Eingabetaste\n" 20 75 8 \
  13. "text" "$MSERTEXT" off \
  14. "develop" "$MSERDEVELOP" off \
  15. "network" "$MSERNETWORK" off \
  16. "doku" "$MSERDOKU" off \
  17. "misc" "$MSERMISC" off \
  18. "tex" "$MSERTEX" off \
  19. "xemacs" "$MSERXEMACS" off 2> $TMPDIR/ZusatzList
  20.  
  21. if [ $? = 1 -o $? = 255 ]; then
  22.     rm -f $TMPDIR/ZusatzList
  23.     echo "Abbruch !"
  24.     exit
  25. fi
  26.  
  27. for SERIE in `cat $TMPDIR/ZusatzList | sed 's/\"//g' ` ; do
  28.     SelAuswahl $SERIE
  29. done
  30.