#!/bin/bash for f in *-*; do if ! [ -d "$f" ]; then continue fi cd "$f" echo "Zipping $f..." zip -r "../out/$f.zip" manifest.json icon.png cd .. done