home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume6 / vt100tool / part01 / decode.sh next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1986-11-30  |  915 b   |  30 lines

  1. #! /bin/sh
  2.  
  3. echo Doing library
  4. X="uu.cim_change.o uu.cim_size.o uu.csr_change.o uu.csr_init.o"
  5. X="$X uu.ttysw_main.o uu.ttyvt100.o uu.vt100fonts.o uu.vt100keys.o"
  6. cd libdir
  7. for i in $X ; do
  8.     uudecode $i
  9.     rm $i
  10. done
  11.  
  12. X="uu.gacha.b.8 uu.gacha.bg.8 uu.gacha.g.8 uu.gacha.r.8 uu.testfont.sh"
  13. X="$X uu.thin.b.5 uu.thin.b.6 uu.thin.bg.5 uu.thin.bg.6 uu.thin.g.5"
  14. X="$X uu.thin.g.6 uu.thin.r.5 uu.thin.r.6 uu.thinbot.b.10 uu.thinbot.bg.10"
  15. X="$X uu.thinbot.g.10 uu.thinbot.r.10 uu.thintop.b.10 uu.thintop.bg.10"
  16. X="$X uu.thintop.g.10 uu.thintop.r.10 uu.thinwide.b.10 uu.thinwide.bg.10"
  17. X="$X uu.thinwide.g.10 uu.thinwide.r.10 uu.wide.b.16 uu.wide.bg.16"
  18. X="$X uu.wide.g.16 uu.wide.r.16 uu.widebot.b.16 uu.widebot.bg.16"
  19. X="$X uu.widebot.g.16 uu.widebot.r.16 uu.widetop.b.16 uu.widetop.bg.16"
  20. X="$X uu.widetop.g.16 uu.widetop.r.16"
  21.  
  22. echo Doing fonts
  23. cd fontdir
  24. for i in $X ; do
  25.     uudecode $i
  26.     rm $i
  27. done
  28.  
  29. exit 0
  30.