home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Education Sampler 1992 [NeXTSTEP]
/
Education_1992_Sampler.iso
/
Mathematics
/
TeX
/
TeXsis-2.15
/
unbundle
< prev
next >
Wrap
Text File
|
1992-08-04
|
516b
|
22 lines
#!/bin/sh
# unbundle - Use this shell script to unbundle the Unix bundle files for
# TeXsis.
#
# usage: unbundle [-c]
#
# The -c argument is passed to the bundles and causes existing
# files to be clobbered.
# (This isn't very useful if it is in the bundles, so send it separately.)
# ---------- first uncompress the files if they were compressed
#uncompress TEXSIS??.Z
# ---------- then run each bundle through /bin/sh
a=`/bin/ls TEXSIS??`
for f in $a
do
echo UNPACKING $f...
/bin/sh $f $1
done