while() { print "enter cmd: "; chomp(my $c=); if ($c eq "") { # only exits after two enters??? last; } else { system("ssh somebox \"$c\""); } } #back to some other stuff