namazu-dev(ring)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: nmzgrep (Re: cxref and global)
Satoru Takabayashi <satoru-t@xxxxxxxxxxxxxxxxxx> wrote:
>>namazuは検索結果がファイル単位なので向いていないでしょう。該
>>当する「行」まで出力する --grep オプションがあるといいかな。
>>ヒットしたファイルに対して grep をかけるだけ。 :-)
>
> % namazu -l foobar [index] |xargs egrep foobar
>
>でできますね。シェルスクリプトでも用意しようかな。nmzgrepと
>いう名前の。(どんな使い道があるかな?)
perlスクリプトを作ってみました。反対がなければ src ディレク
トリに入れようと思います。(不要という気がしなくもない)
-- Satoru Takabayashi
#! /usr/bin/perl -w
use strict;
use FileHandle;
if (@ARGV == 0) {
print "usage: nmzgrep [egrep's options] <pattern> [index]...\n";
exit 1;
}
my @opts = ();
while (defined $ARGV[0] && $ARGV[0] =~ /^-/) {
push @opts, $ARGV[0];
shift @ARGV;
}
if (@ARGV == 0) {
print "usage: nmzgrep [egrep's options] <pattern> [index]...\n";
exit 1;
}
my $pattern = shift @ARGV;
my @indices = @ARGV;
my $command = "namazu -alR $pattern @indices | xargs egrep @opts $pattern";
my $fh = new FileHandle;
$fh->open("$command |");
if (defined $fh) {
while (<$fh>) {
print;
}
} else {
die "nmzgrep: $!";
}
exit 0;