I am attempting to open a SSH connection to a Linux console. I want to be able to submit commands to the SSH after opening it (such as ls, cd, etc). How can I do this?
I am using the subprocess to begin the SSH connection.
subprocess.Popen(["C:\ssh\ssh.exe", "SERVER"]);