Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图使用结构来管理我的服务器。比我想要下面的代码。
def get(url): run('wget url')
我想将参数传递给 wget 命令,而不是在远程机器上下载那个东西。 但这似乎不起作用。 如何使用 python 或 fabric 在远程机器上获取一些东西?
使用url通过:
url
def get(url): run("wget '{}'".format(url))
'用处理特殊字符(例如&)包围 url 。
'
&