Hi all,

I have Cygwin installed and running on Windows machine. I can connect to and send certain commands like "ls","pwd". But when I try to change the directory I am gettign an exception. Here is my code:

use strict;
use warnings;
use Net::OpenSSH;

my $host = 'host';
my $username = 'user';
my $password = 'pass';
my $cmd1 = 'cd/';
my...