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