21

I'm downloading with wget using a slow link.
Sometimes the progress bar looks like this:

15% [+++++++++++++++===>          ] 10,582,848  --.-K/s   in 82s   

What is the meanig of "+"?

Volker Siegel
  • 17,283
amir jj
  • 1,212

1 Answers1

30

Usually, we see that when we have stopped a download and the continued/resumed with it again. That way, we are downloading only portion which has not been downloaded already.

This happens when you use the -c switch. For example

$ wget https://help.ubuntu.com/10.04/serverguide/serverguide.pdf
53% [=======================>                       ] 531,834      444KB/s

And then continuing with below command

$ wget -c https://help.ubuntu.com/10.04/serverguide/serverguide.pdf
100%[++++++++++++++++++++++++======================>] 996,759      326KB/s   in 1.3s   

Hope,this clarifies your doubt.

Volker Siegel
  • 17,283
Jayesh
  • 470