#! /bin/sh

rm -rf $HOME/.mce

(mkdir $HOME/.mce) && (cd /var/lib/mce; tar cf - .) | (cd $HOME/.mce; tar xf - .)
status=$?

if [ $status -ne 0 ]; then
	status=2
fi

exit $status
