#!/bin/bash
for a; do
	if [ -d "$a" ]; then
		m=$a
	else
		m=${a%.*}
	fi
	v fusermount -u "$m"
	rmdir "$m"
done
