plink 12.34.567.89 -ssh -pw <hidden pass> -l <hidden username> svn update ~/public_html
The ip addresss above is hidden/modified
When I execute this, it asks: "login as: _"
But I already supplied my login cr开发者_Go百科edentials in the plink command.
I know my credentials are correct, I tested them with putty
Thanks, Jonah
I was having a similar issue and this helped me solve it
http://groups.google.com/group/comp.security.ssh/browse_thread/thread/058b4cf34acd8822
I think that you need to specify your arguments before the IP address:
plink -ssh -pw <hidden pass> -l <hidden username> 12.34.567.89 svn update ~/public_html
精彩评论