#!/bin/sh --
for i in *; do if test -d $i -a -f $i/mime.icons; then echo $i; tar -zcvf $i.tar.gz $i; fi; done
