-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb77a5a
commit 504d1ea
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# webtoon-dl | ||
|
||
Download [webtoon](https://www.webtoons.com/en/) comics as PDFs using a terminal/command line. | ||
|
||
## Installation | ||
|
||
### Homebrew | ||
|
||
```shell | ||
brew install robinovitch61/tap/webtoon-dl | ||
|
||
# to upgrade | ||
brew update && brew upgrade webtoon-dl | ||
``` | ||
|
||
### Download from Github | ||
|
||
Download the relevant binary for your operating system (macos = darwin) from | ||
the [latest github release](https://github.com/robinovitch61/webtoon-dl/releases). unpack it, then move the binary to | ||
somewhere accessible in your `path`, e.g. `mv ./webtoon-dl /usr/local/bin`. | ||
|
||
### Using [go installed on your machine](https://go.dev/doc/install) | ||
|
||
```shell | ||
go install github.com/robinovitch61/webtoon-dl@latest | ||
``` | ||
|
||
### Build from Source | ||
|
||
Clone this repo, build from source with `cd <cloned_repo> && go build`, then move the binary to somewhere accessible in | ||
your `path`, e.g. `mv ./webtoon-dl /usr/local/bin`. | ||
|
||
## Usage | ||
|
||
```shell | ||
webtoon-dl <your-webtoon-url> | ||
``` |