Using WGET with HTTP Authentication

Passing the user / password can be used to pass HTTP-Auth header values.

wget --user USERNAME --password PASSWORD "http://www.website.com/request/file" -q -O output.txt

Pass the results to /dev/null to trash the output

wget --user USERNAME --password PASSWORD "http://www.website.com/request/file" -q -O /dev/null