Lusine
Lusine

Reputation: 19

Wget connection interrupt

I'm downloading a large website using linux Wget command

wget --mirror -c -e robots=off http://www.largewebsite.com

Is there a way I can resume downloading after switching off the computer?

Upvotes: 0

Views: 878

Answers (1)

Vaibhav Jain
Vaibhav Jain

Reputation: 3755

If the server you were downloading from supports resuming connections,you can kill the wget process and restart it with the -c command.

Upvotes: 1

Related Questions