home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / Net / FTP / quot.al < prev    next >
Text File  |  1997-11-28  |  275b  |  16 lines

  1. # NOTE: Derived from ./blib/lib/Net/FTP.pm.  Changes made here will be lost.
  2. package Net::FTP;
  3.  
  4. # Allow the user to send a command directly, BE CAREFUL !!
  5.  
  6. sub quot
  7.  my $ftp = shift;
  8.  my $cmd = shift;
  9.  
  10.  $ftp->command( uc $cmd, @_);
  11.  $ftp->response();
  12. }
  13.  
  14. 1;
  15.