dotfiles/.bin/mount_tank
2025-06-08 11:15:49 +02:00

12 lines
176 B
Bash
Executable File

#!/bin/sh
if mount | fgrep -q '/tank/'
then
echo "already mounted"
exit 1
fi
awk '$3=="nfs"{print $2}' /etc/fstab \
| xargs -n1 doas mount \
| cut -d" " -f-3