说我在URL“http://mywebsite.com/myscript.txt”上有一个包含脚本的文件:
#!/bin/bash
echo "Hello, world!"
read -p "What is your name? " name
echo "Hello, ${name}!"
我想在没有先将其保存到文件的情况下运行此脚本。我该怎么做?
现在,我已经看到了语法:
bash < <(curl -s http://mywebsite.com/myscript.txt)
但是这似乎没有像我保存到文件然后执行那样工作。例如,readline不起作用,输出只是:
$ bash < <(curl -s http://mywebsite.com/myscript.txt)
Hello, world!
同样,我尝试过:
curl -s http://mywebsite.com/myscript.txt | bash -s --
结果相同。
最初我有一个解决方案:
timestamp=`date +%Y%m%d%H%M%S`
curl -s http://mywebsite.com/myscript.txt -o /tmp/.myscript.${timestamp}.tmp
bash /tmp/.myscript.${timestamp}.tmp
rm -f /tmp/.myscript.${timestamp}.tmp
但这似乎很草率,我想要一个更优雅的解决方案。
我知道有关从URL运行shell脚本的安全问题,但我们现在就忽略所有这些问题。
答案 0 :(得分:181)
source <(curl -s http://mywebsite.com/myscript.txt)
应该这样做。或者,不要在你的初始重定向,这是重定向标准输入; bash
使用文件名在没有重定向的情况下执行得很好,<(command)
语法提供了一个路径。
bash <(curl -s http://mywebsite.com/myscript.txt)
如果查看echo <(cat /dev/null)
答案 1 :(得分:76)
这是执行远程脚本的方法,并向其传递一些参数(arg1 arg2):
curl -s http://server/path/script.sh | bash /dev/stdin arg1 arg2
答案 2 :(得分:29)
对于bash:
curl -s http://server/path/script.sh | bash -s arg1 arg2
Bourne shell还支持&#34; -s&#34;从stdin读取。
答案 3 :(得分:15)
使用wget
,这通常是默认系统安装的一部分:
bash <(wget -qO- http://mywebsite.com/myscript.txt)
答案 4 :(得分:12)
尝试:
bash <(curl -s http://mywebsite.com/myscript.txt)
答案 5 :(得分:11)
你也可以这样做:
wget -O - https://raw.github.com/luismartingil/commands/master/101_remote2local_wireshark.sh | bash
答案 6 :(得分:11)
使用:
curl -s -L URL_TO_SCRIPT_HERE | bash
例如:
curl -s -L http://bitly/10hA8iC | bash
答案 7 :(得分:9)
最好的方法是
curl http://domain/path/to/script.sh | bash -s arg1 arg2
这是@ user77115
的答案略有变化答案 8 :(得分:5)
我经常使用以下就够了
curl -s http://mywebsite.com/myscript.txt | sh
但是在一个旧系统(kernel2.4)中,它会遇到问题,并且做下面的事情可以解决它,我尝试了很多其他的,只有以下工作
curl -s http://mywebsite.com/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 :(得分:4)
此外:
curl -sL https://.... | sudo bash -
答案 10 :(得分:3)
将amra和user77115的答案结合起来:
wget -qO- https://raw.githubusercontent.com/lingtalfi/TheScientist/master/_bb_autoload/bbstart.sh | bash -s -- -v -v
它执行bbstart.sh远程脚本,并将-v选项传递给它。
答案 11 :(得分:1)
是一些无人参与的脚本,我使用以下命令:
sh -c "$(curl -fsSL <URL>)"
我建议避免直接从URL执行脚本。您应该确保URL是安全的,并在执行之前检查脚本的内容,可以在执行之前使用SHA256校验和来验证文件。
答案 12 :(得分:0)
这种方式很好而且很传统:
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: $#
答案 13 :(得分:0)
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:~$