Forrest logo
back to the gallery-dl tool

gallery-dl:tldr:778ba

gallery-dl: Filter manga chapters by chapter number and language.
$ gallery-dl --chapter-filter "${10 <= chapter < 20}" --option "lang=${language_code}" "${url}
try on your machine

This command is using the gallery-dl tool to download images from a gallery or website. Here's the breakdown of the command:

  • gallery-dl: It is the executable command for running the gallery-dl tool.
  • --chapter-filter "${10 <= chapter < 20}": It is an option to filter the chapters or sections of the gallery to be downloaded. In this case, it specifies that only chapters with numbers greater than or equal to 10 and less than 20 should be downloaded. The syntax ${10 <= chapter < 20} represents this condition.
  • --option "lang=${language_code}": This option allows you to specify additional settings. In this case, it sets the language for the downloaded content using ${language_code}, which is a placeholder for the appropriate language code.
  • "${url}": This is the placeholder for the URL of the gallery or website from which the images will be downloaded.

To use this command, you would replace ${10 <= chapter < 20} with the appropriate filter condition, ${language_code} with the desired language code, and ${url} with the actual URL of the gallery or website.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gallery-dl tool