From 66402dd8dfab605172dc71eb58df77535d7fbc29 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 26 Nov 2000 06:54:55 +0000 Subject: added example to documentation --- SSH.pm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'SSH.pm') diff --git a/SSH.pm b/SSH.pm index 607cddd..715eec1 100644 --- a/SSH.pm +++ b/SSH.pm @@ -8,7 +8,7 @@ use IPC::Open3; @ISA = qw(Exporter); @EXPORT_OK = qw( ssh issh sshopen2 sshopen3 ); -$VERSION = '0.01'; +$VERSION = '0.02'; $ssh = "ssh"; @@ -94,10 +94,33 @@ sub _yesno { =back +=head1 EXAMPLE + + use Net::SSH qw(sshopen2); + use strict; + + my $user = "username"; + my $host = "hostname"; + my $cmd = "command"; + + sshopen2("$user\@$host", *READER, *WRITER, "$cmd") || die "ssh: $!"; + + while () { + chomp(); + print "$_\n"; + } + + close(READER); + close(WRITER); + =head1 AUTHOR Ivan Kohler +=head1 CREDITS + + John Harrison contributed an example for the documentation. + =head1 BUGS Not OO. -- cgit v1.2.1