makezip.sh 170 B

12345678
  1. #!/bin/bash
  2. find build/ -type f|cut -d/ -f 1-3|uniq|while read -r dir; do
  3. zip -j -r "circolog-$(git describe)-$(cut -d/ -f 2-3 <<<"$dir"|tr / -)" "$dir"
  4. done
  5. wait