This file contains hidden or 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
#!/bin/bash | |
# kobocomic: Modifies CBR and CBZ files to be displayed correctly on Kobo devices | |
# Requires perl, rar, unrar, zip, unzip | |
if [ "$#" -lt 1 ]; then | |
echo Supply a CBZ, CBR, ZIP, or RAR file to modify. | |
exit | |
fi | |
if [ -d "tmp_kobocomic" ]; then |
OlderNewer