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 / compcun < prev    next >
Text File  |  1989-10-14  |  334b  |  16 lines

  1. #! /bin/sh
  2. # Invoke compress, adding silly 2.11-compatible header.
  3. # 12-bit compression is the lowest common denominator among news sites,
  4. # and is often almost as good as the much-more-costly 16-bit compression.
  5.  
  6. echo "#! cunbatch"
  7. compress -b 12
  8. status=$?
  9. case "$status"
  10. in
  11.     2)
  12.     status=0        # compress stupidity
  13.     ;;
  14. esac
  15. exit $status
  16.