m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/wget.md
diff options
context:
space:
mode:
authorMartin Chrzanowski <martin@celo.org>2019-01-12 16:55:37 -0500
committerMartin Chrzanowski <martin@celo.org>2019-01-12 16:55:37 -0500
commit8feeb19278b475c1743d05a890b769d2e16b0336 (patch)
tree7e905b8421020566264c66b10de1d94324c63b5c /wget.md
parent014e4bc2b61208a677ef0b50a220f1403b164bdc (diff)
parentf99bd96f3fb0b92f2e73498dd82571143587f393 (diff)
Merge branch 'master' of https://gitlab.com/m-chrzan/cheatsheets
Diffstat (limited to 'wget.md')
-rw-r--r--wget.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/wget.md b/wget.md
new file mode 100644
index 0000000..4221bbc
--- /dev/null
+++ b/wget.md
@@ -0,0 +1,14 @@
+# Downloading with wget
+
+## --page-requisites
+
+Gets all files necessary to display given page (images, sounds, CSS, ...)
+
+ wget -p <url>
+
+## Recursive
+
+Defaults to 5 levels deep.
+
+ wget -r <url>
+ wget -r -l <depth> <url>