从 URL 执行 bash 脚本
- 2024-10-14 08:40:00
- admin 原创
- 72
问题描述:
假设我的 URL 处有一个http://mywebsite.example/myscript.txt
包含脚本的文件:
#!/bin/bash
echo "Hello, world!"
read -p "What is your name? " name
echo "Hello, ${name}!"
我想运行此脚本而不先将其保存到文件。我该怎么做?
现在,我已经看到了语法:
bash < <(curl -s http://mywebsite.example/myscript.txt)
但这似乎不像我保存到文件然后执行那样有效。例如,readline 不起作用,输出只是:
$ bash < <(curl -s http://mywebsite.example/myscript.txt)
Hello, world!
同样地,我也尝试过:
curl -s http://mywebsite.example/myscript.txt | bash -s --
结果相同。
我最初有一个解决方案,例如:
timestamp=`date +%Y%m%d%H%M%S`
curl -s http://mywebsite.example/myscript.txt -o /tmp/.myscript.${timestamp}.tmp
bash /tmp/.myscript.${timestamp}.tmp
rm -f /tmp/.myscript.${timestamp}.tmp
但这似乎有些草率,我想要一个更优雅的解决方案。
我知道从 URL 运行 shell 脚本存在安全问题,但是现在我们先忽略这些问题。
解决方案 1:
source <(curl -s http://mywebsite.example/myscript.txt)
应该可以。或者,放弃你的初始重定向,即重定向标准输入;bash
接受文件名以在没有重定向的情况下正常执行,并且<(command)
语法提供路径。
bash <(curl -s http://mywebsite.example/myscript.txt)
如果你看一下输出,可能会更清楚echo <(cat /dev/null)
解决方案 2:
这是通过传递一些参数(arg1 arg2)来执行远程脚本的方法:
curl -s http://server/path/script.sh | bash /dev/stdin arg1 arg2
解决方案 3:
对于 bash、Bourne shell 和 fish:
curl -s http://server/path/script.sh | bash -s arg1 arg2
标志“-s”使 shell 从标准输入读取。
解决方案 4:
使用:
curl -s -L URL_TO_SCRIPT_HERE | bash
例如:
curl -s -L http://bitly/10hA8iC | bash
解决方案 5:
使用wget
,它通常是默认系统安装的一部分:
bash <(wget -qO- http://mywebsite.example/myscript.txt)
解决方案 6:
您还可以执行以下操作:
wget -O - https://raw.github.com/luismartingil/commands/master/101_remote2local_wireshark.sh | bash
解决方案 7:
您可以像这样使用curl
并将其发送至bash
:
bash <(curl -s http://mywebsite.example/myscript.txt)
解决方案 8:
我经常使用以下就足够了
curl -s http://mywebsite.example/myscript.txt | sh
但是在老系统(kernel2.4)上会遇到问题,下面方法可以解决,我试了很多方法,只有下面方法有效
curl -s http://mywebsite.example/myscript.txt -o a.sh && sh a.sh && rm -f a.sh
示例
$ curl -s someurl | sh
Starting to insert crontab
sh: _name}.sh: command not found
sh: line 208: syntax error near unexpected token `then'
sh: line 208: ` -eq 0 ]]; then'
$
问题可能是由于网络速度慢,或者 bash 版本太旧,无法很好地处理网络速度慢
但是,下面的方法解决了这个问题
$ curl -s someurl -o a.sh && sh a.sh && rm -f a.sh
Starting to insert crontab
Insert crontab entry is ok.
Insert crontab is done.
okay
$
解决方案 9:
最好的方法是
curl http://domain/path/to/script.sh | bash -s arg1 arg2
这是@user77115 的答案的轻微变化
解决方案 10:
还:
curl -sL https://.... | sudo bash -
解决方案 11:
仅结合 amra 和 user77115 的答案:
wget -qO- https://raw.githubusercontent.com/lingtalfi/TheScientist/master/_bb_autoload/bbstart.sh | bash -s -- -v -v
它执行 bbstart.sh 远程脚本并向其传递 -v -v 选项。
解决方案 12:
是一些无人值守的脚本我使用以下命令:
sh -c "$(curl -fsSL <URL>)"
我建议避免直接从 URL 执行脚本。您应该确保 URL 是安全的,并在执行之前检查脚本的内容,您可以在执行之前使用 SHA256 校验和来验证文件。
解决方案 13:
不要直接执行脚本,而是先下载然后执行
SOURCE='https://gist.githubusercontent.com/cci-emciftci/123123/raw/123123/sample.sh'
curl $SOURCE -o ./my_sample.sh
chmod +x my_sample.sh
./my_sample.sh
解决方案 14:
这种方法很好而且常规:
17:04:59@itqx|~
qx>source <(curl -Ls http://192.168.80.154/cent74/just4Test) Lord Jesus Loves YOU
Remote script test...
Param size: 4
---------
17:19:31@node7|/var/www/html/cent74
arch>cat just4Test
echo Remote script test...
echo Param size: $#
解决方案 15:
如果希望使用当前 shell 运行脚本(无论它是什么),请使用:
${SHELL:-sh} -c "$(wget -qO - http://mywebsite.example/myscript.txt)"
如果你有wget
,或者:
${SHELL:-sh} -c "$(curl -Ls http://mywebsite.example/myscript.txt)"
如果你有curl
。
如果脚本是交互式的,即它要求用户输入,此命令仍然有效。
注意:OpenWRT默认有一个wget
克隆,但没有。curl
解决方案 16:
bash | curl http://your.url.here/script.txt
实际例子:
juan@juan-MS-7808:~$ bash | curl https://raw.githubusercontent.com/JPHACKER2k18/markwe/master/testapp.sh
Oh, wow im alive
juan@juan-MS-7808:~$
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件