Compare commits

...

2 Commits

Author SHA1 Message Date
Simon Bruder f94b0ab07e
cbz2ebook: Remove dependency on my zshrc
This script could now easily be ported to bash (or even sh), but we are
using nix-shell anyway, so why not use zsh.
2020-09-02 13:05:41 +02:00
Simon Bruder 86283411ad
cbz2ebook: Use nix-shell 2020-09-02 13:01:56 +02:00
1 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/env zsh -i
#!/usr/bin/env nix-shell
#!nix-shell -i zsh -p imagemagick unzip zip zsh
set -e
size="1440x1920" # Kobo Forma
@ -18,7 +19,14 @@ trap cleanup EXIT INT SIGTERM
cd "$tmpdir"
unzip "$infile"
renumber 4 **/*.???
# rename files to have a plain 4 digit filename
i=1
for file in **/*.???; do
mv -n "$file" "$(dirname $file)/$(printf %04d $i).${file##*.}"
i=$((i+1))
done
length=$(ls -1 **/*.??? | wc -l)
position=0
for image in **/*.???; do