व्यक्तिगत रूप से, मैं पर्ल का उपयोग कर रहा हूं, नहीं grep
। मेरे पास एक छोटी स्क्रिप्ट है जो रंग में दिए गए पैटर्न को उजागर करेगी:
#!/usr/bin/env perl
use Getopt::Std;
use strict;
use Term::ANSIColor;
my %opts;
getopts('hsc:l:',\%opts);
if ($opts{h}){
print<<EoF;
DESCRIPTION
$0 will highlight the given pattern in color.
USAGE
$0 [OPTIONS] -l PATTERN FILE
If FILE is ommitted, it reads from STDIN.
-c : comma separated list of colors
-h : print this help and exit
-l : comma separated list of search patterns (can be regular expressions)
-s : makes the search case sensitive
EoF
exit(0);
}
my $case_sensitive=$opts{s}||undef;
my @color=('bold red','bold blue', 'bold yellow', 'bold green',
'bold magenta', 'bold cyan', 'yellow on_magenta',
'bright_white on_red', 'bright_yellow on_red', 'white on_black');
## user provided color
if ($opts{c}) {
@color=split(/,/,$opts{c});
}
## read patterns
my @patterns;
if($opts{l}){
@patterns=split(/,/,$opts{l});
}
else{
die("Need a pattern to search for (-l)\n");
}
# Setting $| to non-zero forces a flush right away and after
# every write or print on the currently selected output channel.
$|=1;
while (my $line=<>)
{
for (my $c=0; $c<=$#patterns; $c++){
if($case_sensitive){
if($line=~/$patterns[$c]/){
$line=~s/($patterns[$c])/color("$color[$c]").$1.color("reset")/ge;
}
}
else{
if($line=~/$patterns[$c]/i){
$line=~s/($patterns[$c])/color("$color[$c]").$1.color("reset")/ige;
}
}
}
print STDOUT $line;
}
यदि आप इसे अपने पथ में सहेजते हैं color
, तो आप अपना वांछित आउटपुट चलाकर प्राप्त कर सकते हैं
grep --group-separator="" --color=never -A5 foo | color -l foo
इस तरह, स्क्रिप्ट आपके लिए मैचों को रंग रही है और आप grep
रंगों का उपयोग न करने और इस समस्या से बचने के लिए कह सकते हैं ।
--color=always
मैच रंग से प्रिंट होगा, और यदि आपके पास--group-separator=""
खाली स्ट्रिंग के लिए सेट है , तो आपको अपने मिलान समूह के बाद एक खाली लाइन मिल जाएगी। कृपया फिर से कोशिश करें--group-separator=""
कि खाली स्ट्रिंग को छोड़ दें , एक विशिष्ट रंग से बच नहीं, और फिर समझाएं कि क्या काम नहीं कर रहा है।