如何从 Windows 7 通过 `ssh` 自动运行 Linux 命令?

发布于 2024-11-29 13:01:41 字数 111 浏览 1 评论 0原文

目前我使用 puTTY,打开到我的 Ubuntu 服务器的 SSH 连接并在那里执行一些 svn 更新注释。

我想自动化整个过程,但只执行脚本/批处理文件。

我怎样才能做到这一点?

Currently I use puTTY, open SSH connection to my Ubuntu server and execute some svn update comment over there.

I want to automate that whole process but executing just a script/batch file.

How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧夏天 2024-12-06 13:01:41

我自己发现了它,没有使用 Cygwin - 我一直在安装/重新安装它。

答案是使用 PuTTY 中的 Plink

rem Note
rem ----
rem 01 Update `plink` to point to `plink.exe` on `your PC`
rem 02 Update `pkey` to point to `private key` of `remote server`
rem (the end)

set plink="Path\To\PuTTY\plink.exe"
set user=<your user>
set server=<remote server>
set pkey="Path\To\YourPrivateSSHKey.ppk"
set pass=<your pass>

set run=%plink% -v -pw %pass% -i %pkey% %user%@%server%

rem sample run command
set cmd=svn update /var/www/MyWeb

%run% %cmd%
rem (the end)

希望有帮助

I found it myself without using Cygwin - I'm stuck with installing/reinstalling it.

The answer is using Plink from PuTTY.

rem Note
rem ----
rem 01 Update `plink` to point to `plink.exe` on `your PC`
rem 02 Update `pkey` to point to `private key` of `remote server`
rem (the end)

set plink="Path\To\PuTTY\plink.exe"
set user=<your user>
set server=<remote server>
set pkey="Path\To\YourPrivateSSHKey.ppk"
set pass=<your pass>

set run=%plink% -v -pw %pass% -i %pkey% %user%@%server%

rem sample run command
set cmd=svn update /var/www/MyWeb

%run% %cmd%
rem (the end)

Hope that helps

溺孤伤于心 2024-12-06 13:01:41

安装 Cygwin 并使用其 shell 和 ssh 客户端。

Install Cygwin and use its shell and ssh client.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文