#!/bin/sh
if [ -z "`mount | grep $*`" ]; then
	echo failure - $* is not mounted.
else
	chown $USER /$*
	echo success - $* now writeable for $USER.
fi
