diff options
-rw-r--r-- | INTRO | 7 | ||||
-rw-r--r-- | rtty.c | 2 |
2 files changed, 5 insertions, 4 deletions
@@ -25,6 +25,7 @@ flag, expecting a password to be set in the SSHPASS environment variable. If you often need to log into remote servers without public key -authentication, consider compiling a special version of rtty -- I -suggest the name rttyp -- and installing it alongside the normal -version of rtty. +authentication, or if you cannot use ssh-agent(1) to avoid entering +your key's passphrase interactively, consider compiling a special +version of rtty -- I suggest the name rttyp -- and installing it +alongside the normal version of rtty. @@ -49,7 +49,7 @@ main(int argc, char *argv[]) offset = -1; #ifdef SSHPASS nargv[++offset] = "sshpass"; - nargv[++offset] = "-e"; + nargv[++offset] = "-ePass"; #endif nargv[++offset] = "ssh"; nargv[++offset] = "-tt"; |