我有一个在github gist中托管的python脚本用于测试目的。
它只包含1行代码。
print "This line will be printed."
我将其命名为print.py
,这里的link为原始文字。
我想知道我们是否可以执行它而无需将其下载到我们的本地VM然后运行它。
是否可以根据它的链接直接执行它?
答案 0 :(得分:3)
如果你的意思是从命令行执行 (例如bash),我会使用curl
抓取页面的内容并将输出传递给python
。
curl "URL" -s -N | python
在你的情况下:
$ curl https://gist.githubusercontent.com/bheng/36ead076b79595639124fa783557d419/raw/e9ee46a841fd21fc1e29bdd8be1b0300fc091f72/print.py -s -N | python
This line will be printed.