3 # $NetBSD: znew,v 1.2 2003/12/28 12:43:43 wiz Exp $
4 # $DragonFly: src/usr.bin/gzip/znew,v 1.1 2004/10/26 11:19:31 joerg Exp $
5 # $OpenBSD: znew,v 1.2 2003/08/05 18:22:17 deraadt Exp $
7 # Copyright (c) 2003 Otto Moerbeek <otto@drijf.net>
9 # Permission to use, copy, modify, and distribute this software for any
10 # purpose with or without fee is hereby granted, provided that the above
11 # copyright notice and this permission notice appear in all copies.
13 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 # Return 0 if the first arg file size is smaller than the second, 1 otherwise.
24 a
=`du -k "$1" | awk '{ print $1 }'`
25 b
=`du -k "$2" | awk '{ print $1 }'`
29 # Check gzip integrity if the -t flag is specified
31 if test $tflag -eq 1; then
36 # Decompress a file and then gzip it
42 if test ! -e "$filez"; then
43 echo "$prog: $filez does not exist"
46 if test ! -f "$filez"; then
47 echo "$prog: $filez is not a regular file"
50 if test -e "$filegz" -a $fflag -eq 0; then
51 echo "$prog: $filegz already exists"
55 tmp
=`mktemp /tmp/znewXXXXXXXXXX` ||
{
56 echo "$prog: cannot create tmp file"
59 trap 'rm -f "$tmp"; exit 1' HUP INT QUIT PIPE TERM
61 # Do the actual work, producing a file "$tmp"
62 if uncompress -f -c < "$filez" |
gzip -f $gzipflags -o "$tmp"; then
64 if test $kflag -eq 1 && smaller
"$filez" "$tmp"; then
65 echo -n "$prog: $filez is smaller than $filegz"
70 if ! checkfile
"$tmp"; then
71 echo "$prog: integrity check of $tmp failed"
76 # Try to keep the mode of the original file
77 if ! cp -fp "$filez" "$filegz"; then
78 echo "$prog: warning: could not keep mode of $filez"
80 if ! cp "$tmp" "$filegz" 2> /dev
/null
; then
81 echo "$prog: warning: could not keep mode of $filez"
82 if ! cp -f "$tmp" "$filegz" 2> /dev
/null
; then
83 echo "$prog: could not copy $tmp to $filegz"
84 rm -f "$filegz" "$tmp"
88 if ! touch -fr "$filez" "$filegz"; then
89 echo -n "$prog: warning: could not keep timestamp of "
94 echo "$prog: failed to process $filez"
101 usage
="usage: $prog [-ftv9K] file ..."
108 # -P flag is recognized to maintain compatibility, but ignored. Pipe mode is
110 while getopts :ftv9PK i
; do
114 v
) gzipflags
="-v $gzipflags";;
115 9) gzipflags
="-9 $gzipflags";;
118 \?) echo "$usage"; exit 1;;
124 if test $# -eq 0; then
131 while test $# -ne 0; do
132 if ! process
"$1"; then