Reputation: 31
I want to redirect the output of the command "wget" to a file, but i do not want to fill the file at the end of the command, but I want to fill it progressively. Thanks.
Upvotes: 0
Views: 130
Reputation: 3908
Take a look at curl with the --no-buffer flag.
curl
--no-buffer
Reputation: 4496
wget -qO- www.stackoverflow.com > file.html
Upvotes: 1