From 08f28b5468f90a7eb16938e45d632100e95dff2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 3 Nov 2013 20:19:27 +0100 Subject: [PATCH] wget: continue flag --- cheatsheets/wget | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheatsheets/wget b/cheatsheets/wget index 0c41b53..0ba5a3c 100644 --- a/cheatsheets/wget +++ b/cheatsheets/wget @@ -4,6 +4,9 @@ wget http://path.to.the/file # To download a file and change its name wget http://path.to.the/file -o newname +# To continue an aborted downloaded +wget -c http://path.to.the/file + # To download multiples files with multiple URLs wget URL1 URL2