# wget Downloads a file from the web and saves it to the current directory by default. -O-: send the output to stdout instead of a file -o-: redirect the log messages to stdout instead of stderr -q: suppress log output # curl Downloads a file from the web and writes it to stdout by default. -O: write the output to a local file named like the remote file we get -L: follow redirects #cli