mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.9 KiB

  1. --- gzip-1.3/gzexe.in.orig Thu Nov 9 15:08:50 2000
  2. +++ gzip-1.3/gzexe.in Thu Nov 9 15:09:09 2000
  3. @@ -15,9 +15,9 @@
  4. x=`basename $0`
  5. if test $# = 0; then
  6. - echo compress executables. original file foo is renamed to foo~
  7. - echo usage: ${x} [-d] files...
  8. - echo " -d decompress the executables"
  9. + echo compress executables. original file foo is renamed to foo~ 1&>2
  10. + echo usage: ${x} [-d] files... 1>&2
  11. + echo " -d decompress the executables" 1>&2
  12. exit 1
  13. fi
  14. --- gzip-1.3/zdiff.in.orig Thu Nov 9 15:08:50 2000
  15. +++ gzip-1.3/zdiff.in Thu Nov 9 15:09:29 2000
  16. @@ -32,7 +32,7 @@
  17. esac
  18. done
  19. if test -z "$FILES"; then
  20. - echo "Usage: $prog [${comp}_options] file [file]"
  21. + echo "Usage: $prog [${comp}_options] file [file]" 1>&2
  22. exit 2
  23. fi
  24. set $FILES
  25. @@ -64,6 +64,6 @@
  26. esac;;
  27. esac
  28. else
  29. - echo "Usage: $prog [${comp}_options] file [file]"
  30. + echo "Usage: $prog [${comp}_options] file [file]" 1>&2
  31. exit 2
  32. fi
  33. --- gzip-1.3/zforce.in.orig Thu Nov 9 15:08:50 2000
  34. +++ gzip-1.3/zforce.in Thu Nov 9 15:09:47 2000
  35. @@ -9,8 +9,8 @@
  36. PATH="BINDIR:$PATH"; export PATH
  37. x=`basename $0`
  38. if test $# = 0; then
  39. - echo "force a '.gz' extension on all gzip files"
  40. - echo usage: $x files...
  41. + echo "force a '.gz' extension on all gzip files" 1>&2
  42. + echo usage: $x files... 1>&2
  43. exit 1
  44. fi
  45. --- gzip-1.3/zgrep.in.orig Thu Nov 9 15:08:50 2000
  46. +++ gzip-1.3/zgrep.in Thu Nov 9 15:12:21 2000
  47. @@ -31,8 +31,8 @@
  48. done
  49. if test -z "$pat"; then
  50. - echo "grep through gzip files"
  51. - echo "usage: $prog [grep_options] pattern [files]"
  52. + echo "grep through gzip files" 1>&2
  53. + echo "usage: $prog [grep_options] pattern [files]" 1>&2
  54. exit 2
  55. fi
  56. --- gzip-1.3/zmore.in.orig Thu Nov 9 15:08:50 2000
  57. +++ gzip-1.3/zmore.in Thu Nov 9 15:13:49 2000
  58. @@ -23,7 +23,8 @@
  59. if test $# = 0; then
  60. if test -t 0; then
  61. - echo usage: ${ZMORE_PROGRAM_NAME-zmore} files...
  62. + echo usage: ${ZMORE_PROGRAM_NAME-zmore} files... 1>&2
  63. + exit 1
  64. else
  65. gzip -cdfq | eval ${PAGER-more}
  66. fi
  67. --- gzip-1.3/znew.in.orig Thu Nov 9 15:08:50 2000
  68. +++ gzip-1.3/znew.in Thu Nov 9 15:14:20 2000
  69. @@ -51,13 +51,13 @@
  70. done
  71. if test $# -eq 0; then
  72. - echo "recompress .Z files into $ext (gzip) files"
  73. - echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z...
  74. - echo " -t tests the new files before deleting originals"
  75. - echo " -v be verbose"
  76. - echo " -9 use the slowest compression method (optimal compression)"
  77. - echo " -K keep a .Z file when it is smaller than the $ext file"
  78. - echo " -P use pipes for the conversion $warn"
  79. + echo "recompress .Z files into $ext (gzip) files" 1>&2
  80. + echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z... 1>&2
  81. + echo " -t tests the new files before deleting originals" 1>&2
  82. + echo " -v be verbose" 1>&2
  83. + echo " -9 use the slowest compression method (optimal compression)" 1>&2
  84. + echo " -K keep a .Z file when it is smaller than the $ext file" 1>&2
  85. + echo " -P use pipes for the conversion $warn" 1>&2
  86. exit 1
  87. fi