Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: Urgent Help For Perl Issues

by vinoth.ree (Monsignor)
on Mar 15, 2013 at 08:36 UTC ( [id://1023640]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Urgent Help For Perl Issues
in thread Urgent Help For Perl Issues

Just use the cd command with your path and navigate to your path and do untar

my($stdout, $stderr, $exit) = $ssh->cmd("cd $path"); ($stdout, $stderr, $exit) = $ssh->cmd("untar tar.gz");

Replies are listed 'Best First'.
Re^4: Urgent Help For Perl Issues
by Anonymous Monk on Mar 15, 2013 at 09:31 UTC
    Hi Vinoth,
    my $ssh = Net::SSH::Perl->new($host); $ssh->login($user, $password); my($stdout, $stderr, $exit) = $ssh->cmd("cd testing"); ($stdout, $stderr, $exit) = $ssh->cmd("unzip wwww.zip");
    This one i used. But file unzipped in home directory only not unzipped inside testing folder.. Any Worng....

      As suggested by marto just print

      print "$stdout\n"; print "$stderr\n"; print "$exit\n";

      after

      my($stdout, $stderr, $exit) = $ssh->cmd("cd testing");
        ssh opens a new session for every command run and so commands with side effects as cd doesn't work as expected.

        Use shell conjunctions instead to run the two commands as one:

        $ssh->cmd("cd $dir && $cmd")
        Showing Empty Values Only Marto..No Luck

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1023640]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-03-19 05:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found