https://github.com/ahme-dev/epubgot
Utility to output EPUB into terminal as plaintext.
https://github.com/ahme-dev/epubgot
command-line-utility epub-reader
Last synced: 7 months ago
JSON representation
Utility to output EPUB into terminal as plaintext.
- Host: GitHub
- URL: https://github.com/ahme-dev/epubgot
- Owner: ahme-dev
- License: bsd-2-clause
- Created: 2021-07-30T15:18:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-09T16:11:52.000Z (over 2 years ago)
- Last Synced: 2025-01-20T14:50:40.523Z (9 months ago)
- Topics: command-line-utility, epub-reader
- Language: Go
- Homepage:
- Size: 277 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### About
Epubgot is a utility to output EPUB into terminal as plaintext. Written in Golang, it does two things:
- List content: display how many chapters there are to read and how many images you'll miss.
- Output chapter: unzips EPUBs, selects an HTML file, converts it to text and prints to the terminal.### Usage
Show info and help.
```sh
epubgot
```List all chapters and number of images in the book.
```sh
epubgot programmingingo.epub
```Output the 12th chapter of the book
```sh
epubgot programmingingo.epub 12
```Output all chapters of the book
```sh
epubgot programmingingo.epub all
```