home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Mathematics / TeX / TeXsis-2.15 / unbundle < prev    next >
Text File  |  1992-08-04  |  516b  |  22 lines

  1. #!/bin/sh
  2. # unbundle - Use this shell script to unbundle the Unix bundle files for
  3. #            TeXsis.   
  4. #
  5. # usage: unbundle [-c]
  6. #
  7. # The -c argument is passed to the bundles and causes existing
  8. # files to be clobbered.
  9. # (This isn't very useful if it is in the bundles, so send it separately.)
  10.  
  11. # ---------- first uncompress the files if they were compressed
  12. #uncompress TEXSIS??.Z
  13.  
  14. # ---------- then run each bundle through /bin/sh
  15. a=`/bin/ls TEXSIS??`
  16. for f in $a
  17. do
  18.     echo UNPACKING $f...
  19.     /bin/sh  $f $1
  20. done
  21.  
  22.