home *** CD-ROM | disk | FTP | other *** search
/ Chip 1994 February / CHIP0294.ISO / digital / test / linux / bootdisk / rootdisk.18 / usr / lib / LST / SelZusatzAll < prev   
Encoding:
Text File  |  1994-06-12  |  781 b   |  33 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 7 \
  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. "xappl" "$MSERXAPPL" off \
  20. "grafik" "$MSERGRAFIK" off \
  21. "xdevelo" "$MSERXDEVELO" off \
  22. "xemacs" "$MSERXEMACS" off 2> $TMPDIR/ZusatzList
  23.  
  24. if [ $? = 1 -o $? = 255 ]; then
  25.     rm -f $TMPDIR/ZusatzList
  26.     echo "Abbruch !"
  27.     exit
  28. fi
  29.  
  30. for SERIE in `cat $TMPDIR/ZusatzList | sed 's/\"//g' ` ; do
  31.     SelAuswahl $SERIE
  32. done
  33.