#!/usr/bin/env bash
set -euo pipefail

sshUnmount () {
   args=($@)
   for d in ${args[@]}; do
      fusermount -u /home/fabian/$d
   done
}