dotfiles/scripts/toCbz

7 lines
114 B
Plaintext
Raw Permalink Normal View History

2021-02-16 01:07:53 +01:00
#!/bin/bash
# Convert manga picture folders in current folder to cbz
for i in ./*; do
zip -r "$i.cbz" "$i"
done