Loading... <div class="tip share">请注意,本文编写于 1596 天前,最后修改于 1487 天前,其中某些信息可能已经过时。</div> ## 前言 有时候shell脚本可以放在http页面上,不用download,可以直接执行。 通常我们可以用curl的方式执行http页面上的shell脚本。 一般方式是: ``` curl http://XXX.com/xx/xx.sh | bash ``` 这样脚本就可以在本地机器上执行了。 ## 带参 有时也有需要传入参数的脚本。分为无名参数和具名参数(长选项和短选项)。 ### 无名参 `-s`方式 ``` curl -s http://XXX.com/xx/xx.sh | bash -s arg1 arg2 ``` `bash <`方式 ``` bash <(curl -s http://XXX.com/xx/xx.sh) arg1 arg2 ``` ### 具名参 由于直接调用了bash命令,因此在远程脚本需要传递具名参数时,为了区分是bash命令的参数还是远程脚本的,可以使用--作为区分,可以理解为分割线,--前面的比如-s属于bash,后面的-x abc -y xyz属于远程脚本的参数 ``` curl -L http://XXX.com/xx/xx.sh | bash -s -- -x abc -y xyz ``` 参考 > [passing parameters to bash when executing a script fetched by curl][1] [1]: https://stackoverflow.com/questions/4642915/passing-parameters-to-bash-when-executing-a-script-fetched-by-curl/4642975 最后修改:2020 年 10 月 26 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏