--- gzip-1.3/gzexe.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/gzexe.in Thu Nov 9 15:09:09 2000 @@ -15,9 +15,9 @@ x=`basename $0` if test $# = 0; then - echo compress executables. original file foo is renamed to foo~ - echo usage: ${x} [-d] files... - echo " -d decompress the executables" + echo compress executables. original file foo is renamed to foo~ 1&>2 + echo usage: ${x} [-d] files... 1>&2 + echo " -d decompress the executables" 1>&2 exit 1 fi --- gzip-1.3/zdiff.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/zdiff.in Thu Nov 9 15:09:29 2000 @@ -32,7 +32,7 @@ esac done if test -z "$FILES"; then - echo "Usage: $prog [${comp}_options] file [file]" + echo "Usage: $prog [${comp}_options] file [file]" 1>&2 exit 2 fi set $FILES @@ -64,6 +64,6 @@ esac;; esac else - echo "Usage: $prog [${comp}_options] file [file]" + echo "Usage: $prog [${comp}_options] file [file]" 1>&2 exit 2 fi --- gzip-1.3/zforce.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/zforce.in Thu Nov 9 15:09:47 2000 @@ -9,8 +9,8 @@ PATH="BINDIR:$PATH"; export PATH x=`basename $0` if test $# = 0; then - echo "force a '.gz' extension on all gzip files" - echo usage: $x files... + echo "force a '.gz' extension on all gzip files" 1>&2 + echo usage: $x files... 1>&2 exit 1 fi --- gzip-1.3/zgrep.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/zgrep.in Thu Nov 9 15:12:21 2000 @@ -31,8 +31,8 @@ done if test -z "$pat"; then - echo "grep through gzip files" - echo "usage: $prog [grep_options] pattern [files]" + echo "grep through gzip files" 1>&2 + echo "usage: $prog [grep_options] pattern [files]" 1>&2 exit 2 fi --- gzip-1.3/zmore.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/zmore.in Thu Nov 9 15:13:49 2000 @@ -23,7 +23,8 @@ if test $# = 0; then if test -t 0; then - echo usage: ${ZMORE_PROGRAM_NAME-zmore} files... + echo usage: ${ZMORE_PROGRAM_NAME-zmore} files... 1>&2 + exit 1 else gzip -cdfq | eval ${PAGER-more} fi --- gzip-1.3/znew.in.orig Thu Nov 9 15:08:50 2000 +++ gzip-1.3/znew.in Thu Nov 9 15:14:20 2000 @@ -51,13 +51,13 @@ done if test $# -eq 0; then - echo "recompress .Z files into $ext (gzip) files" - echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z... - echo " -t tests the new files before deleting originals" - echo " -v be verbose" - echo " -9 use the slowest compression method (optimal compression)" - echo " -K keep a .Z file when it is smaller than the $ext file" - echo " -P use pipes for the conversion $warn" + echo "recompress .Z files into $ext (gzip) files" 1>&2 + echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z... 1>&2 + echo " -t tests the new files before deleting originals" 1>&2 + echo " -v be verbose" 1>&2 + echo " -9 use the slowest compression method (optimal compression)" 1>&2 + echo " -K keep a .Z file when it is smaller than the $ext file" 1>&2 + echo " -P use pipes for the conversion $warn" 1>&2 exit 1 fi