From 3b78250404611c18fab9bb6139481fb8da949fe0 Mon Sep 17 00:00:00 2001 From: Marlon Landaverde Date: Sun, 19 Jan 2014 15:06:42 -0500 Subject: [PATCH] adds how to wget a file into a specific directory --- cheatsheets/wget | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheatsheets/wget b/cheatsheets/wget index d0bcd7b..ad04dd9 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 download a file into a directory +wget -P path/to/directory http://path.to.the/file + # To continue an aborted downloaded wget -c http://path.to.the/file