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 を で囲みます (例: &)。
'
&