Reputation: 19
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
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