summaryrefslogtreecommitdiffstats
path: root/bin/grepc
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-11-04 20:59:06 +0100
committerAlejandro Colomar <alx@kernel.org>2023-11-05 03:14:06 +0100
commita82394004841f04b646f392eea2faeb7e06fce2a (patch)
tree6ac6b8abbeca8bbb627e3183e88b9650ce61d3d8 /bin/grepc
parentca0b88a99b6f9cc598ff4f1767ed19601170c4ec (diff)
bin/grepc, grepc.1: Remove -h flag
There's already a manual page, and the short help from -h was quite unhelpful. I want to reuse -h for grep(1)'s meaning (don't print the filename). Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'bin/grepc')
-rwxr-xr-xbin/grepc6
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/grepc b/bin/grepc
index a4f414e..2cbe33e 100755
--- a/bin/grepc
+++ b/bin/grepc
@@ -38,15 +38,11 @@ grepc_err()
grepc_parse_cmd()
{
- while getopts "chiklt:" opt; do
+ while getopts "ciklt:" opt; do
case "$opt" in
c)
c='yes';
;;
- h)
- echo "Usage: $0 [OPTION ...] IDENTIFIER [FILE ...]";
- exit 0;
- ;;
i)
i='i';
;;