You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
254 B

#!/usr/bin/env bash
set -o errexit
set -o pipefail
main() {
if [[ -f ~/mnt/jool/.mounted ]]; then
printf 'Already mounted\n' >&2
exit 0
fi
mkdir -p ~/mnt/jool
sshfs me@jool:/store/sshfs/meatballhat ~/mnt/jool -p 23436 -C
}
main "${@}"