我正在尝试在卷曲输出上运行python而不实际将文件下载到系统上。
所以不要做以下事情:
wget 1.2.3.4/mypythonfile.py
python mypythonfile.py
我希望能够做python | (curl 1.2.3.4/mypythonfile.py)
之类的事情。
顺便说一句,上面的命令不起作用。
我该怎么做?
答案 0 :(得分:2)
而不是python | (curl 1.2.3.4/mypythonfile.py)
,请执行此操作
curl 1.2.3.4/mypythonfile.py | python -