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。如果我通过它调用 urlwget会下载页面内容。它不运行脚本。怎么做?
module
wget
我原以为即使它下载了页面,它仍然会运行脚本。
要在不下载文件的情况下运行,请使用:
wget -O - -q -t 1 http://example.com/path/to/file.php
从记忆里:
-O 和连字符正在重定向输出,因此它不会保存到文件中。
-q 表示安静
-t 是尝试的次数。
您可以使用 man wget 查找更多选项。