You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is that password input is handled differently in the terminal (not via stdin). I'm not sure if it's possible to catch that from a process and feed the password. Sounds kind of like a security nightmare. Maybe there is a way, but one would have to do some research.
For something like this you should really just use an SSH key and then use ssh-agent.
eval`ssh-agent`
ssh-add ~/.ssh/id_<my_ssh_key>
to avoid the password requirement. I haven't done this myself, so I'm not entirely sure about how to make sure the SSH agent is available in the subprocess that is started (I've only used ssh-agent in a contained terminal session).
If i do:
nothing happend. But if i do:
Everything works correctly.
Soooo.... is it have to working like that? :)
The text was updated successfully, but these errors were encountered: