# Created on savesnippets.com ยท https://savesnippets.com/PoMrKmntw8v38B # wget โ€” best progress bar by default wget -c -O big.zip https://example.com/big.zip # -c : resume partial downloads # -O : output filename # curl โ€” progress bar via -# curl -L -# -O https://example.com/big.zip # -# : show a # progress bar (instead of full stats) # -O : keep remote filename # -L : follow redirects # curl with --resume to continue an interrupted download curl -L -C - -O https://example.com/big.zip # -C - = resume from end of local file # axel for parallel chunks (faster on high-latency links โ€” must be installed) axel -n 8 https://example.com/big.zip