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.
moduleカスタムに長いスクリプトを実行するURL があります。それを介してurlを呼び出すとwget、ページのコンテンツがダウンロードされます。スクリプトは実行されません。どうやってするの?
module
wget
ページをダウンロードしたとしても、スクリプトは実行されると思っていたでしょう。
ファイルをダウンロードせずに実行するには:
wget -O - -q -t 1 http://example.com/path/to/file.php
記憶から:
-O とハイフンは出力をリダイレクトするため、ファイルに保存されません。
-qは静かです
-t は試行回数です。
man wget を使用して、さらにオプションを調べることができます。