• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D14-May-20081.1 KiB3726

MANIFESTH A D09-Oct-200065 87

MANIFEST.SKIPH A D09-Oct-20005 21

Makefile.PLH A D09-Oct-2000230 85

READMEH A D25-Dec-20071.6 KiB4233

SSH.pmH A D14-May-20088.1 KiB344107

test.plH A D09-Oct-2000653 215

README

1Net::SSH
2
3Copyright (c) 2002 Ivan Kohler
4Copyright (c) 2007 Freeside Internet Services, Inc.
5All rights reserved.
6This program is free software; you can redistribute it and/or modify it under
7the same terms as Perl itself.
8
9This module implements a Perl interface to ssh.  It is a simple wrapper around
10the system `ssh' command.  For a perl implementation that does not require
11the system B<ssh> command, see L<Net::SSH::Perl> instead.  For a wrapper
12version that allows you to use passwords, see L<Net::SSH::Expect> instead.
13For another non-forking version that uses the libssh2 library, see
14L<Net::SSH2>.  For a way to execute remote Perl code over an ssh connection
15see L<IPC::PerlSSH>.
16
17To install:
18        perl Makefile.PL
19        make
20        make test # nothing substantial yet
21        make install
22
23Documentation will then be available via `man Net:SSH' or `perldoc Net::SSH'
24
25Anonymous CVS access is available:
26  $ export CVSROOT=":pserver:anonymous@cleanwhisker.420.am:/home/cvs/cvsroot"
27  $ cvs login
28  (Logging in to anonymous@pouncequick.cleanwhisker.420.am)
29  CVS password: anonymous
30  $ cvs checkout Net-SSH
31as well as <http://www.420.am/cgi-bin/cvsweb/Net-SSH>.
32
33Assitance wanted - this module could really use a maintainer with enough time
34to at least review and apply more patches.  Or the module should just be
35deprecated in favor of Net::SSH::Expect or made into an ::Any style
36compatibility wrapper that uses whatver implementation is avaialble
37(Net::SSH2, Net::SSH::Perl or shelling out like the modules does now).  Please
38email if you are interested in helping.
39
40Ivan Kohler <ivan-netssh_readme@420.am>
41
42