Non-interactive network downloader.
Synopsis
wget [OPTIONS] <URL>
Description
Download files from the web non-interactively. Saves the file to the virtual filesystem. In CLI mode, requests are proxied through the SLICC server. Runs in the just-bash WASM shell inside SLICC.
Options
-O FILE Write output to FILE.
-q, --quiet Turn off wget's output.
--header=HEADER Send custom header. Repeatable.
--help Display help and exit.
Examples
$ wget https://example.com/file.zip
Download a file to the current directory.
$ wget -O output.html https://example.com
Download and save with a specific filename.
Notes
Operates on the SLICC virtual filesystem. In CLI mode, proxied through /api/fetch-proxy for CORS. Simpler than curl; intended for basic downloads.
See Also
curl