cbr2cbz/README.md

73 lines
2.4 KiB
Markdown
Raw Normal View History

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.
## 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.
## Usage:
2023-09-19 14:41:43 +02:00
### Convert a single file.
2023-09-19 14:49:35 +02:00
$ cbr2cbz single "filename.cbr"
### Convert all files recursively from the current location.
2023-09-19 14:49:35 +02:00
$ cbr2cbz all
### Display help text.
$ cbr2cbz help
### Warning:
2023-09-19 14:49:35 +02:00
If conversion is successful, the original file(s) will be deleted.
## Dependancies:
2023-09-19 14:49:35 +02:00
2023-09-19 15:24:05 +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.
## IMPORTANT NOTE
Currently, the tool uses a fixed location for the temp files and the files list. If you decide to run this two in two sessions, they will conflict and you will have a bad day. At a later stage, I will add support to allow more than one session to be run at a time, for all those hardcore users.
## ROAD MAP
2023-09-20 11:35:58 +02:00
I am currently trying to add the support for a log file and statistics. Having a few issues, so my most recent and non-working commit is in the unstable folder.
2023-09-27 14:14:51 +02:00
I will eventually add support for more formats and in different directions. Right now, I had 10 000 + files, and some were cbr and some were cbz, but my device has issues with cbr, probably because RAR is a closed patent. So for now I wanted to convert all my cbr files to cbz, for my own needs.
2023-09-27 13:36:07 +02:00
## Contact the developer.
I never check my email. If you would like to get hold of me, send me a DM on Reddit u/thisiszeev
I am looking for someone to port this to Windows Powershell. Contact me on Reddit if you are interested?
2023-09-27 13:35:15 +02:00
# Donations
Please consider making me small donation. Even though my scripts are open source and free to use, I still need to eat. And the occasional bottle of wine also goes down well.
- $5 buys me a cup of coffee
- $10 buys me a nice burger
- $20 buys me a bottle of wine
- Anything above that will be awesome as well.
You can send me a donation via Paypal https://www.paypal.com/paypalme/thisiszeev
Drop me a message on Reddit if you do make a donation. u/thisiszeev
Support is only offered freely to those who donate $20 or more.
Your donation contributes to further development.
If you need a custom script, contact me on Reddit for pricing.
2023-09-27 14:14:51 +02:00