blob: c3a16b4f683d8a1fedbbb6aa7b16c6209834d70d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/local/bin/perl
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: search.pl,v 1.1 2001/04/15 09:09:03 fukachan Exp $
#
use IO::Adapter;
my $map = shift || 'file:/var/spool/ml/elena/actives';
my $obj = new IO::Adapter $map;
$obj->open || croak("cannot open $map");
while ($x = $obj->getline) { print "<< ", $x if $x =~ /\S+/;}
print "\n";
$obj->close;
for ('rudo', 'fukachan') {
print "* search $_ in $map\n";
print $obj->find($_), "\n";
}
exit 0;
|