sync/scripts/unmount_general.sh

10 lines
141 B
Bash
Raw Permalink Normal View History

2022-04-28 23:36:42 +02:00
#!/usr/bin/env bash
set -euo pipefail
sshUnmount () {
args=($@)
for d in ${args[@]}; do
fusermount -u /home/fabian/$d
done
}