#!/bin/sh
echo folding $1 ...
tar cf - "$1" | bzip2 > "$1.tar.bz2" && rm -rf "$1"
echo ... done
