spider/cmd/type.pl

29 lines
437 B
Perl
Raw Normal View History

1999-05-22 20:39:20 +00:00
#
# the type command, display bulls and files
#
# Copyright (c) 1999 Dirk Koopman G1TLH
#
# $Id$
#
my ($self, $line) = @_;
my @f = split /\s+/, $line;
my $root = "$main::root/packclus";
my @out;
my @file;
my @d;
my @slot;
if (@f) {
my $fn = lc $f[0];
$fn =~ s([^A-Za-z0-9_/])()g;
$fn =~ s(^/+)();
1999-05-22 20:39:20 +00:00
$root = "$root/$fn";
}
open(INP, $root) or return (1, $self->msg('e3', 'type', $f[0]));
@out = <INP>;
close(INP);
return (1, @out);