curl

Download files from HTTP, HTTPS, or FTP servers

brewmacoslinux
Try with needOr install directly
Source

About

Get a file from an HTTP, HTTPS or FTP server

Commands

curl

Examples

Download a file from a URL$ curl https://example.com/file.zip -o file.zip
Make a POST request with JSON data$ curl -X POST https://api.example.com/data -H 'Content-Type: application/json' -d '{"key": "value"}'
Download a file following redirects with progress bar$ curl -L https://example.com/redirect -# -O