#-*- perl -*- # # Copyright (C) 2002,2004 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: ls.pm,v 1.5 2004/01/01 08:41:34 fukachan Exp $ # package FML::Command::Admin::ls; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); use Carp; use FML::Command::Admin::dir; @ISA = qw(FML::Command::Admin::dir); # Descriptions: file/directory listings. # Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) # Side Effects: forward request to dir module # Return Value: none sub process { my ($self, $curproc, $command_args) = @_; $self->SUPER::process($curproc, $command_args); } =head1 NAME FML::Command::Admin::ls - file/directory listings. =head1 SYNOPSIS See C for more details. =head1 DESCRIPTION file/directory listings. an alias of C. =head1 CODING STYLE See C on fml coding style guide. =head1 AUTHOR Ken'ichi Fukamachi =head1 COPYRIGHT Copyright (C) 2002,2004 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. =head1 HISTORY FML::Command::Admin::ls first appeared in fml8 mailing list driver package. See C for more details. =cut 1;