home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / bin / znew < prev   
Text File  |  1999-01-22  |  4KB  |  153 lines

  1. #!/bin/sh
  2.  
  3. PATH="/usr/bin:$PATH"; export PATH
  4. check=0
  5. pipe=0
  6. opt=
  7. files=
  8. keep=0
  9. res=0
  10. old=0
  11. new=0
  12. block=1024
  13. # block is the disk block size (best guess, need not be exact)
  14.  
  15. warn="(does not preserve modes and timestamp)"
  16. tmp1=`tempfile -d /tmp -p gz` || {
  17.       echo 'cannot create a temporary file' >&2
  18.       exit 1
  19. }
  20. tmp2=`tempfile -d /tmp -p gz` || {
  21.       echo 'cannot create a temporary file' >&2
  22.       exit 1
  23. }
  24. echo hi > $tmp1
  25. echo hi > $tmp2
  26. if test -z "`(${CPMOD-cpmod} $tmp1 $tmp2) 2>&1`"; then
  27.   cpmod=${CPMOD-cpmod}
  28.   warn=""
  29. fi
  30.  
  31. if test -z "$cpmod" && ${TOUCH-touch} -r $tmp1 $tmp2 2>/dev/null; then
  32.   cpmod="${TOUCH-touch}"
  33.   cpmodarg="-r"
  34.   warn="(does not preserve file modes)"
  35. fi
  36.  
  37. # check if GZIP env. variable uses -S or --suffix
  38. gzip -q $tmp1
  39. ext=`echo $tmp1* | sed "s|$tmp1||"`
  40. rm -f $tmp1* $tmp2*
  41. if test -z "$ext"; then
  42.   echo znew: error determining gzip extension
  43.   exit 1
  44. fi
  45. if test "$ext" = ".Z"; then
  46.   echo znew: cannot use .Z as gzip extension.
  47.   exit 1
  48. fi
  49.  
  50. for arg
  51. do
  52.   case "$arg" in
  53.   -*)     opt="$opt $arg"; shift;;
  54.    *)     break;;
  55.   esac
  56. done
  57.  
  58. if test $# -eq 0; then
  59.   echo "recompress .Z files into $ext (gzip) files"
  60.   echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z...
  61.   echo "  -t tests the new files before deleting originals"
  62.   echo "  -v be verbose"
  63.   echo "  -9 use the slowest compression method (optimal compression)"
  64.   echo "  -K keep a .Z file when it is smaller than the $ext file"
  65.   echo "  -P use pipes for the conversion $warn"
  66.   exit 1
  67. fi
  68.  
  69. opt=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
  70. case "$opt" in
  71.   *t*) check=1; opt=`echo "$opt" | sed 's/t//g'`
  72. esac
  73. case "$opt" in
  74.   *K*) keep=1; opt=`echo "$opt" | sed 's/K//g'`
  75. esac
  76. case "$opt" in
  77.   *P*) pipe=1; opt=`echo "$opt" | sed 's/P//g'`
  78. esac
  79. if test -n "$opt"; then
  80.   opt="-$opt"
  81. fi
  82.  
  83. for i do
  84.   n=`echo $i | sed 's/.Z$//'`
  85.   if test ! -f "$n.Z" ; then
  86.     echo $n.Z not found
  87.     res=1; continue
  88.   fi
  89.   test $keep -eq 1 && old=`wc -c < "$n.Z"`
  90.   if test $pipe -eq 1; then
  91.     if gzip -d < "$n.Z" | gzip $opt > "$n$ext"; then
  92.       # Copy file attributes from old file to new one, if possible.
  93.       test -n "$cpmod" && $cpmod $cpmodarg "$n.Z" "$n$ext" 2> /dev/null
  94.     else
  95.       echo error while recompressing $n.Z
  96.       res=1; continue
  97.     fi
  98.   else
  99.     if test $check -eq 1; then
  100.       if cp -p "$n.Z" "$n.$$" 2> /dev/null || cp "$n.Z" "$n.$$"; then
  101.     :
  102.       else
  103.     echo cannot backup "$n.Z"
  104.         res=1; continue
  105.       fi
  106.     fi
  107.     if gzip -d "$n.Z"; then
  108.       :
  109.     else
  110.       test $check -eq 1 && mv "$n.$$" "$n.Z"
  111.       echo error while uncompressing $n.Z
  112.       res=1; continue
  113.     fi
  114.     if gzip $opt "$n"; then
  115.       :
  116.     else
  117.       if test $check -eq 1; then
  118.     mv "$n.$$" "$n.Z" && rm -f "$n"
  119.         echo error while recompressing $n
  120.       else
  121.     # compress $n  (might be dangerous if disk full)
  122.         echo error while recompressing $n, left uncompressed
  123.       fi
  124.       res=1; continue
  125.     fi
  126.   fi
  127.   test $keep -eq 1 && new=`wc -c < "$n$ext"`
  128.   if test $keep -eq 1 -a `expr \( $old + $block - 1 \) / $block` -lt \
  129.                          `expr \( $new + $block - 1 \) / $block`; then
  130.     if test $pipe -eq 1; then
  131.       rm -f "$n$ext"
  132.     elif test $check -eq 1; then
  133.       mv "$n.$$" "$n.Z" && rm -f "$n$ext"
  134.     else
  135.       gzip -d "$n$ext" && compress "$n" && rm -f "$n$ext"
  136.     fi
  137.     echo "$n.Z smaller than $n$ext -- unchanged"
  138.  
  139.   elif test $check -eq 1; then
  140.     if gzip -t "$n$ext" ; then
  141.       rm -f "$n.$$" "$n.Z"
  142.     else
  143.       test $pipe -eq 0 && mv "$n.$$" "$n.Z"
  144.       rm -f "$n$ext"
  145.       echo error while testing $n$ext, $n.Z unchanged
  146.       res=1; continue
  147.     fi
  148.   elif test $pipe -eq 1; then
  149.     rm -f "$n.Z"
  150.   fi
  151. done
  152. exit $res
  153.