Re: SSH Wrapper

2008-06-25 Thread Hamish Allan
On Wed, Jun 25, 2008 at 10:01 PM, Kevin Ferguson <[EMAIL PROTECTED]> wrote: > There doesn't appear to > be any way to make my application wait for the password prompt, either. If stdin is not a tty (which is indeed the case running from an NSTask) and the environment variables DISPLAY and SSH_ASK

Re: SSH Wrapper

2008-06-25 Thread Stephen J. Butler
On Wed, Jun 25, 2008 at 4:28 PM, Jens Alfke <[EMAIL PROTECTED]> wrote: > You might consider using the libssh2 library instead > . This is a good suggestion. But if he still wants to stick with command line ssh, I'd suggest looking at how sshfs does

Re: SSH Wrapper

2008-06-25 Thread Jens Alfke
On 25 Jun '08, at 2:01 PM, Kevin Ferguson wrote: I am, however, running into a problem. I have my task set up to go. The issue I'm running into is that SSH obviously requires a password authentication. Reading though the SSH man page, I can't find a flag that lets you specify a password in

SSH Wrapper

2008-06-25 Thread Kevin Ferguson
Greetings, I'm attempting to write an SSH wrapper for a cocoa application. It doesn't need to do anything fancy, only get me logged into the remote machine. Beyond that, my application will execute commands as the user requests them. I am, however, running into a problem. I ha