home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
400-499
/
ff473.lzh
/
CNewsSrc
/
cnews_src.lzh
/
batch
/
comp
< prev
next >
Wrap
Text File
|
1989-10-14
|
316b
|
15 lines
#! /bin/sh
# Invoke compress, without silly 2.11-compatible header.
# 12-bit compression is the lowest common denominator among news sites,
# and is often almost as good as the much-more-costly 16-bit compression.
compress -b 12
status=$?
case "$status"
in
2)
status=0 # compress stupidity
;;
esac
exit $status