2023-09-19 14:36:59 +02:00
# cbr2cbz
2023-09-19 14:41:43 +02:00
BASH tool to convert cbr files to cbz files either in batch or one by one.
2023-09-19 14:50:36 +02:00
## Download the tool using:
2023-09-19 14:41:43 +02:00
$ git clone git@git.zaks.web.za:thisiszeev/cbr2cbz.git
$ chmod +x cbr2cbz.sh
$ sudo cp cbr2cbz.sh /usr/bin/cbr2cbz
That's it.
2023-09-19 14:50:36 +02:00
## Usage:
2023-09-19 14:41:43 +02:00
2023-09-19 14:50:36 +02:00
### Convert a single file.
2023-09-19 14:47:03 +02:00
2023-09-19 14:49:35 +02:00
$ cbr2cbz single "filename.cbr"
2023-09-19 14:47:03 +02:00
2023-09-19 14:50:36 +02:00
### Convert all files recursively from the current location.
2023-09-19 14:49:35 +02:00
$ cbr2cbz all
### Display help text.
$ cbr2cbz help
2023-09-19 14:50:36 +02:00
### Warning:
2023-09-19 14:49:35 +02:00
If conversion is successful, the original file(s) will be deleted.
2023-09-19 14:50:36 +02:00
## Dependancies:
2023-09-19 14:49:35 +02:00
The script requires "zip" and "unrar". Please ensure they are installed before trying to run the script. A simple online search will help you with this. At a later stage I will build an install and update functionality which will do this automatically.