From c75a90f65e7311ddeea998699f260a4e2b1433be Mon Sep 17 00:00:00 2001 From: Jaroslav Škarvada Date: May 16 2011 12:17:19 +0000 Subject: Added coloring to egrep and fgrep Resolves: rhbz#697895 --- diff --git a/colorgrep.sh b/colorgrep.sh index 436518f..9b23d61 100644 --- a/colorgrep.sh +++ b/colorgrep.sh @@ -8,3 +8,5 @@ if [ -r /etc/GREP_COLORS ]; then fi alias grep='grep --color=auto' 2>/dev/null +alias egrep='egrep --color=auto' 2>/dev/null +alias fgrep='fgrep --color=auto' 2>/dev/null diff --git a/grep.spec b/grep.spec index 1b8daba..13b7ce9 100644 --- a/grep.spec +++ b/grep.spec @@ -3,7 +3,7 @@ Summary: Pattern matching utilities Name: grep Version: 2.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Text Source: ftp://ftp.gnu.org/pub/gnu/grep/grep-%{version}.tar.xz @@ -67,6 +67,10 @@ fi %{_mandir}/*/* %changelog +* Mon May 16 2011 Jaroslav Škarvada - 2.8-2 +- Added coloring to egrep and fgrep + Resolves: rhbz#697895 + * Mon May 16 2011 Jaroslav Škarvada - 2.8-1 - New version: grep-2.8 Resolves: rhbz#704710