zgrep: small improvements

* Use slightly more efficient method to determine the name of the program
called [1]
* Use nicer form to loop over arguments [1]
* add special support for --version along with -V previously added by kevans

Reported by:	jilles@ [1]
This commit is contained in:
Baptiste Daroussin 2018-04-25 20:52:17 +00:00
parent 57e453099e
commit 9fdb4cfa89
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333011

View File

@ -34,7 +34,7 @@ grep_args=""
hyphen=0
silent=0
prg=$(basename $0)
prg=${0##*/}
# handle being called 'zegrep' or 'zfgrep'
case ${prg} in
@ -106,9 +106,8 @@ do
silent=1
shift
;;
-V)
${grep} -V
exit $?
-V|--version)
exec ${grep} -V
;;
-*)
grep_args="${grep_args} $1"
@ -145,9 +144,8 @@ else
if [ ${silent} -lt 1 -a $# -gt 1 ]; then
grep_args="-H ${grep_args}"
fi
while [ $# -gt 0 ]
do
${cattool} ${catargs} -- "$1" | ${grep} --label="${1}" ${grep_args} -- "${pattern}" -
for file do
${cattool} ${catargs} -- "${file}" | ${grep} --label="${file}" ${grep_args} -- "${pattern}" -
shift
done
fi