This repository has been archived on 2025-03-18. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
114 B
Plaintext
Raw 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