You know, wget is a essential download tool in command line mode.But how to use wget to download a file which requires password before downloading?Actually,it is not difficult,the key is we must use "-user" and "-password"these 2 options.please see following sample :
$ wget –user=username –password=’password’ http://address/download/foo.mp3
username = your username, 'password' ='your password' .
