From 7cad15d85d55c7ad11cb25c2ec5e8cd17ecc84ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 08:23:00 +0100 Subject: Adding upstream version 1.6~pre2. Signed-off-by: Daniel Baumann --- lzgrep | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lzgrep') diff --git a/lzgrep b/lzgrep index 9d9eaeb..0991f58 100755 --- a/lzgrep +++ b/lzgrep @@ -5,6 +5,8 @@ # This script is free software: you have unlimited permission # to copy, distribute and modify it. +LC_ALL=C +export LC_ALL invocation_name=$0 args= default_prog=lzip @@ -37,9 +39,12 @@ while [ x"$1" != x ] ; do echo " --gzip use gzip as default decompressor" echo " --bzip2 use bzip2 as default decompressor" echo " --lzip use lzip as default decompressor (default)" + echo + echo "Report bugs to lzip-bug@nongnu.org" + echo "Lzip home page: http://www.nongnu.org/lzip/lzip.html" exit 0 ;; --version | --ve* | -V) - echo "Lzgrep 0.3" + echo "Lzgrep 0.4" echo "Copyright (C) 2009 Antonio Diaz Diaz." echo "This script is free software: you have unlimited permission" echo "to copy, distribute and modify it." @@ -93,7 +98,7 @@ for i in "$@" ; do case "$i" in *.gz | *.tgz) prog="gzip -cdfq" ;; - *.bz2 | *.tbz2) + *.bz2 | *.tbz | *.tbz2) prog="bzip2 -cdfq" ;; *.lz | *.tlz) prog="lzip -cdfq" ;; -- cgit v1.2.3