#!/bin/sh
for mp in `grep managed /etc/fstab | grep $1 | cut -d' ' -f1`; do
	umount $mp
done
