mirror of
https://github.com/simon987/cbr2cbz.git
synced 2025-04-10 14:06:44 +00:00
Create README.md
This commit is contained in:
parent
c502cc28f6
commit
8b45669cae
26
README.md
Normal file
26
README.md
Normal file
@ -0,0 +1,26 @@
|
||||
# cbr2cbz
|
||||
|
||||
Convert a .cbr file to a .cbz file without modifying the original document.
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
cbr2cbz file1.cbr file2.cbr ...
|
||||
```
|
||||
|
||||
**Convert all files in a directory**
|
||||
```bash
|
||||
cbr2cbz /path/to/comics/*.cbr
|
||||
cbr2cbz /path/to/comics/**/*.cbr
|
||||
```
|
||||
|
||||
**Convert all files in a directory (multithreaded)**
|
||||
```bash
|
||||
find /path/to/comics/ -name '*.cbr' | parallel -j4 cbr2cbz {}
|
||||
```
|
||||
|
||||
## Build from source
|
||||
```bash
|
||||
cmake .
|
||||
make
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user