X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=zcat.in;h=390dcfef1f2c638b4b41f4265326b2e43771a1ca;hb=63a4dabcae87d368cccb3365f2266b8941ba8915;hp=54befb4bbc0fa687a6ab8d10ea88f4801cebe5ac;hpb=2e7e88b2efec90c4ad9dc7a24d533b36a6223be2;p=debian%2Fgzip diff --git a/zcat.in b/zcat.in index 54befb4..390dcfe 100644 --- a/zcat.in +++ b/zcat.in @@ -1,7 +1,7 @@ #!/bin/sh # Uncompress files to standard output. -# Copyright (C) 2007, 2010-2016 Free Software Foundation, Inc. +# Copyright (C) 2007, 2010-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,9 +18,9 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. version="zcat (gzip) @VERSION@ -Copyright (C) 2007, 2011-2016 Free Software Foundation, Inc. +Copyright (C) 2007, 2011-2018 Free Software Foundation, Inc. This is free software. You may redistribute copies of it under the terms of -the GNU General Public License . +the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. Written by Paul Eggert." @@ -44,8 +44,8 @@ With no FILE, or when FILE is -, read standard input. Report bugs to ." case $1 in ---help) exec echo "$usage";; ---version) exec echo "$version";; +--help) printf '%s\n' "$usage" || exit 1; exit;; +--version) printf '%s\n' "$version" || exit 1; exit;; esac exec gzip -cd "$@"