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>
if [ $# -ne 1 ]; then
- >&2 echo "Usage: $0 <identifier>";
+ >&2 echo "Usage: $0 IDENTIFIER";
exit 1;
fi;