cURL

--

Options:

  • -O, — remote-name Write output to a file named as the remote file
  • -o, — output <file> Write to file instead of stdout
  • -L supports redirect
  • -i, — include Include protocol response headers in the output
  • -v, — verbose Make the operation more talkative shows TLS handshake

curl -O https://releases.ubuntu.com/22.04.4/ubuntu-22.04.4-desktop-amd64.iso

curl -o myUbuntu.iso https://releases.ubuntu.com/22.04.4/ubuntu-22.04.4-desktop-amd64.iso

curl -L https://example.com

--

--