Example 1: Remote command for creating directory testdir
on a remote Unix
system:
$ sshg3user1
@unix.example.com
mkdirtestdir
Example 2: Remote command for creating a directory on a remote Windows system:
$ sshg3user2
@windows.example.com
"cmd /c mkdirtestdir
"
Example 3: Multiple commands can be separated using a semicolon:
$ sshg3user1
@unix.example.com
"cd /tmp; ls -l test.*; rm test.txt"