#!/bin/dash
find . -maxdepth 1 -type d | sed '1d; s|./||' | 
while read p; do
	pp=${p}-kernel.tar.gz
	rm $pp 2> /dev/null
	tar -czvf $pp $p
done
