Linux – the default user agent when using ‘wget’ on Linux

linuxwget

What is the default user agent when using the 'wget' command on Linux. I'm not trying to fake out a website when it's being used, I simply want to know what appears in the Apache logs. Thanks!

Best Answer

You can change it with command --user-agent=agent-string.

The man page says:

Wget normally identifies as ‘Wget/version’, version being the current version number of Wget.

Related Question