#!/bin/bash
# Convert manga picture folders in current folder to cbz

for i in ./*; do
	zip -r "$i.cbz" "$i"
done
