in reply to Re: Net::OpenSSH multiple commands
in thread Net::OpenSSH multiple commands
Otherwise, in case $path_to_file contained shell metacharacters it could produce undesired results or even be a security hole.my @cmd1 = (cd => $path_to_file); my @cmd2 = (ls => '-a'); $ssh->system(@cmd1, \\'&&', @cmd2)
Note that currently, argument quoting expect some derivative of the Bourne shell on the remote side. Support for quoting arguments for other shells is in the works though.
|
|---|