通过 SSH 执行存储在文件中的 Bash 脚本

发布于 2024-11-01 20:03:25 字数 347 浏览 1 评论 0原文

假设我在文件 foo.sh 中存储了以下 Bash 脚本:

#!/bin/bash
echo foo

无需 scp 文件,我如何执行存储在 foo.sh 中的脚本 在远程机器上?

我尝试了以下方法(有一些变化)但没有成功:

$ ssh root@remote eval `cat foo.sh`

eval `cat foo.sh`似乎扩展为eval #!/bin/bash echo foo 这里

Say I have the following Bash script stored in the file foo.sh:

#!/bin/bash
echo foo

Without having to scp the file, how could I execute the script stored in foo.sh on a remote machine?

I have tried the following (with a few variations) to no success:

$ ssh root@remote eval `cat foo.sh`

eval `cat foo.sh`seems to expand to eval #!/bin/bash echo foo here

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

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

发布评论

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

评论(5

浅忆 2024-11-08 20:03:25
ssh root@MachineB 'bash -s' < local_script.sh

我从该线程中得到它: 如何使用 SSH 在远程计算机上运行 shell 脚本?

ssh root@MachineB 'bash -s' < local_script.sh

I got it from that thread: How to use SSH to run a shell script on a remote machine?

玻璃人 2024-11-08 20:03:25

在接受的答案中我看到:

我想把它作为一个内衬。你能写一个小代码示例吗?

应该是这样:

ssh root@MachineB 'bash -s -- uno' < local_script.sh

或者更好的是,带有一份此处的文档

ssh root@MachineB 'bash -s -- uno' <<\EOF
> date
> echo $1
> EOF
jue sep 18 13:01:25 CEST 2014
uno

In accepted answer I see:

I'd like to have it as a one liner. Could you make a small code example?

That should be it:

ssh root@MachineB 'bash -s -- uno' < local_script.sh

or better, with a here-in document

ssh root@MachineB 'bash -s -- uno' <<\EOF
> date
> echo $1
> EOF
jue sep 18 13:01:25 CEST 2014
uno
岁月如刀 2024-11-08 20:03:25

猫foo.sh | ssh -T root@remote 就可以了。 -T 选项会抑制您因从文件通过管道传输输入而收到的警告。

cat foo.sh | ssh -T root@remote will to the trick. The -T option suppresses a warning you would otherwise get because you're piping input from a file.

演出会有结束 2024-11-08 20:03:25
cat foo.sh | ssh HOSTNAME 

不过,现在经过测试:小心处理! :)
(删除了破折号(参见评论)和几乎所有内容:))

cat foo.sh | ssh HOSTNAME 

Now tested, though: handle with care! :)
(removed dash (see comments) and nearly everything :) )

梦过后 2024-11-08 20:03:25

您可以使用 runoverssh

sudo apt install runoverssh
runoverssh -s localscript.sh user host

-s 远程运行本地脚本

You can use runoverssh:

sudo apt install runoverssh
runoverssh -s localscript.sh user host

-s runs a local script remotely

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