Linux – Redirecting Output to ‘wget-log.1’

linuxraspberry piwget

I am trying to download the Linux version of Gdrive from GitHub using this command

wget https://docs.google.com/uc?id=0B3X9GlR6EmbnWksyTEtCM0VfaFE&export=download

It's getting stuck with this output.

[1] 869 pi@raspberrypi:~ $ Redirecting output to ‘wget-log.2’

Best Answer

There is a & in the URL (nothing special for URLs) it just so happens that this is a reserved character for the bash shell... which brings the current command to the background... Try to either put your URL in "" or escape that & with a preceeding \

Related Question