From 5019413a055ce29e660dbbf15e02443cb5a26c59 Mon Sep 17 00:00:00 2001 From: Jeff Bastian Date: Wed, 3 Apr 2013 13:59:17 +0200 Subject: [PATCH] xzgrep: make the '-h' option to be --no-filename equivalent * src/scripts/xzgrep.in: Accept the '-h' option in argument parsing. --- src/scripts/xzgrep.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/xzgrep.in b/src/scripts/xzgrep.in index d8e9bb58..951266b0 100644 --- a/src/scripts/xzgrep.in +++ b/src/scripts/xzgrep.in @@ -109,7 +109,7 @@ while test $# -ne 0; do files_with_matches=1;; (-L | --files-witho*) files_without_matches=1;; - (--no-f*) + (-h | --no-f*) no_filename=1;; (-V | --v | --ve | --ver | --vers | --versi | --versio | --version) echo "$version" || exit 2