From 50a776ff77ddcb1b555bfd3f2aab8eb6cfe7242a Mon Sep 17 00:00:00 2001 From: Abhay Rana Date: Mon, 18 Jul 2016 18:14:34 +0530 Subject: [PATCH] comic conversions --- cbr2pdf | 3 +++ cbz2pdf | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 cbr2pdf create mode 100755 cbz2pdf diff --git a/cbr2pdf b/cbr2pdf new file mode 100755 index 0000000..c9ba186 --- /dev/null +++ b/cbr2pdf @@ -0,0 +1,3 @@ +#!/bin/bash + +find . -iname "*.cbr" -print0 |xargs -0 -L1 -I {} ebook-convert '{}' .pdf --dont-grayscale \ No newline at end of file diff --git a/cbz2pdf b/cbz2pdf new file mode 100755 index 0000000..d754f5f --- /dev/null +++ b/cbz2pdf @@ -0,0 +1,3 @@ +#!/bin/bash + +find . -iname "*.cbz" -print0 |xargs -0 -L1 -I {} ebook-convert '{}' .pdf --dont-grayscale \ No newline at end of file