#!/bin/sh
# $Id: fumount,v 1.1 2015/09/15 22:54:53 friedman Exp $

for m in "$@"; do
    fusermount -u "$m"
done

# eof
