개인적으로, 나는 Perl을 사용하지 않습니다 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=""
특정 색상 이스케이프가 아닌 빈 문자열을 사용하여 다시 시도한 다음 작동하지 않는 것을 설명하십시오.