summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-11-03 18:48:51 +0100
committerAlejandro Colomar <alx@kernel.org>2023-11-03 23:05:49 +0100
commitd34c191fce67f9f22b974c6db9a6ef14f5479d79 (patch)
tree1156b9b382793ba4a91d35555e2ab030c95f8dee /bin
parent35ff99a8399b8f140c817d554b38eb37aecf544b (diff)
Allow specifying several files
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/grepc9
1 files changed, 2 insertions, 7 deletions
diff --git a/bin/grepc b/bin/grepc
index 23c9e3c..db053d9 100755
--- a/bin/grepc
+++ b/bin/grepc
@@ -156,12 +156,7 @@ grepc_parse_cmd()
identifier=$1;
shift;
- if [ $# -gt 0 ]; then
- file="$1";
- shift;
- fi;
-
- test $# -gt 1 && grepc_err "Trailing unknown arguments.";
+ files=$*;
if [ "$tflag" = 'no' ]; then
t_e='yes';
@@ -237,7 +232,7 @@ main()
{
grepc_parse_cmd "$@" </dev/null;
- pcre2grep -${iflag}${lflag}HMn -f <(grepc_patterns "$identifier") $file \
+ pcre2grep -${iflag}${lflag}HMn -f <(grepc_patterns "$identifier") $files \
| sed -E -f <(test "$kflag" = 'no' && echo 's/^[^: ]+:[0-9]+:/\n\n&\n/') \
| perl -pe "$(test "$cflag" = 'yes' && echo 's/('"$identifier"')/\033[32m\1\033[0m/' || echo 's///')" \
| if [ -n "$lflag" ]; then