grep/grepconf.sh
Petr Šabata a5ad1f63bd RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/grep#15ff98af0f77e3b21d2c74251051860f8513d4a7
2020-10-15 09:46:50 +02:00

12 lines
253 B
Bash

#!/bin/sh
case "$1" in
-c | --interactive-color)
! grep -qsi "^COLOR.*none" /etc/GREP_COLORS
;;
*)
echo >&2 "Invalid / no option passed, so far only -c | --interactive-color is supported."
exit 1
;;
esac