43 lines
1.7 KiB
Markdown
43 lines
1.7 KiB
Markdown
# kotatsu-dl
|
|
Easy-to-use cross-platform manga downloader with a lot of manga sources supported
|
|
|
|
[](https://github.com/KotatsuApp/kotatsu-parsers) [](https://aur.archlinux.org/packages/kotatsu-dl-git)
|
|
|
|

|
|
|
|
# Installation
|
|
|
|
### For Windows/Linux/Mac users
|
|
Just download the [latest release](https://github.com/KotatsuApp/kotatsu-dl/releases/latest) and use it
|
|
|
|
```shell
|
|
java -jar ./kotatsu-dl.jar
|
|
```
|
|
Java 17 or later is required
|
|
|
|
### For ArchLinux users
|
|
The package is available in AUR
|
|
|
|
```shell
|
|
yay -S kotatsu-dl-git
|
|
```
|
|
When installed from AUR the `kotatsu-dl` command will be available system-wide.
|
|
|
|
# Usage
|
|
|
|
```shell
|
|
Usage: kotatsu-dl [<options>] <link>
|
|
|
|
Options:
|
|
--dest, --destination=<value> Output file or directory path. Default is current directory
|
|
--format=(cbz|zip|dir) Output format
|
|
-j, --jobs=<int> Number of parallel jobs for downloading
|
|
--throttle Slow down downloading to avoid blocking your IP address by server
|
|
--chapters=<numbers or range> Numbers of chapters to download. Can be a single numbers or range, e.g. "1-4,8,11" or "all"
|
|
-v, --verbose Show more information
|
|
-h, --help Show this message and exit
|
|
|
|
Arguments:
|
|
<link> Direct link to the manga copied from browser as is
|
|
```
|