From 9e74294e3d6642dba0f22777570a71ebd5492053 Mon Sep 17 00:00:00 2001 From: 4G3NT <76431337+4G3NT@users.noreply.github.com> Date: Wed, 12 Jul 2023 06:11:26 -0700 Subject: [PATCH] gallery-dl: add --cookies-from-browser example and fix typo (#10489) Fix unquoted url argument on line 16. --- pages/common/gallery-dl.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/gallery-dl.md b/pages/common/gallery-dl.md index 4b9979683..b3e19bb49 100644 --- a/pages/common/gallery-dl.md +++ b/pages/common/gallery-dl.md @@ -7,10 +7,14 @@ `gallery-dl "{{url}}"` +- Retrieve pre-existing cookies from your web browser (useful for sites that require login): + +`gallery-dl --cookies-from-browser {{browser}} "{{url}}"` + - Get the direct URL of an image from a site supporting authentication with username and password: `gallery-dl --get-urls --username {{username}} --password {{password}} "{{url}}"` - Filter manga chapters by chapter number and language: -`gallery-dl --chapter-filter "{{10 <= chapter < 20}}" --option "lang={{language_code}}" "{{url}}` +`gallery-dl --chapter-filter "{{10 <= chapter < 20}}" --option "lang={{language_code}}" "{{url}}"`