wget now automatically redirecting output to a log file, how to return back to putting output below

Viewed 9422

Whenever I used wget, the output and progress of the download would be displayed below.

I just tried using it today, and it only says 'Redirecting output to ‘wget-log.4’.'

Is there a way to bring it back to how it used to be?

Here's an example when I would run it in python 3

!pip install wget
!wget -i https://s3-us-west-2.amazonaws.com/ai2-s2-research-public/open-corpus/corpus-2018-05-03/s2-corpus-01.gz

Redirecting output to ‘wget-log.4’.

2 Answers

I had the same problem in the linux terminal. Try using wget -q

-q in the first flag, as in "quiet", not creating the wget-log file.

Related