#!/bin/sh

mountlist=/tmp/mountlist.txt

if [ "$#" -ne "0" ] ;then
    echo "unmount-me <no params>"
    echo "...mountlist is assumed to be at $mountlist"
    exit 1
fi

unmount-subroutine-me < $mountlist
exit $?
