summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-05-11 18:53:30 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-05-11 18:53:36 +0200
commit8c691b0ce92fb079154544d79673f678195d98f1 (patch)
tree706079c1b46a4ee5a06f404f073f81c9d28def58 /bin
parentcf440e63eb1e4912146a3b1a7f38503828351dcb (diff)
grepc: Usage: ffix
Using caps instead of <> will be nicer when we add options and optional arguments for the files/directories: Usage: grepc [OPTION]... IDENTIFIER [FILE]... vs Usage: grepc [<option>]... IDENTIFIER [<file>]... Also, it's what pcregrep(1) and GNU grep(1) use, so it's good to use the same syntax here. Reported-by: наб <nabijaczleweli@nabijaczleweli.xyz> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/grepc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/grepc b/bin/grepc
index e36c96d..ad60951 100755
--- a/bin/grepc
+++ b/bin/grepc
@@ -2,7 +2,7 @@
if [ $# -ne 1 ]; then
- >&2 echo "Usage: $0 <identifier>";
+ >&2 echo "Usage: $0 IDENTIFIER";
exit 1;
fi;