#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' sshUnmount () { args=($@) for d in ${args[@]}; do fusermount -u /home/fabian/$d done }