Network Commands
curl
Aliases: get
Usage: curl|get <url> [--full] [--timeout <ms>] [--binary] [-o <file>] [--no-cors]
Description: fetch URL (with/without CORS proxy)
Options: --full
, --timeout <ms>
, --binary
, -o <file>
, --no-cors
Examples:
curl https://example.com
— fetch URLcurl https://example.com --timeout 5000
— with timeoutcurl https://example.com --binary
— as binarycurl https://example.com -o response.txt
— save to filecurl https://example.com --no-cors
— skip proxycurl https://example.com --full
— show full body
download
Aliases: down
Usage: download|down [path]
Description: download a file or directory from virtual FS to your computer
nslookup
Aliases: dig
Usage: nslookup <hostname>
Description: DNS record lookup via DNS-over-HTTPS
Examples:
nslookup example.com
— Query the A, AAAA, and MX records for example.comnslookup google.com
— Query the A, AAAA, and MX records for google.com
ping
Usage: ping [-t] [url]
Description: ping a host
Options: '-t'
Examples:
ping example.com
— Ping example.comping -t example.com
— Ping example.com continuously
upload
Aliases: 'up'
Description: upload local file(s) into the shell's FS