Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- #######################################
- # Simple SSHFS-Mount Conditional Switch
- #######################################
- if [ -d "/tmp/sshfs" ]; then
- sh "$HOME/Scripts/sshfs-mount/sshfs-mount" unmount
- sleep 1
- rm --recursive /tmp/sshfs
- else
- mkdir /tmp/sshfs
- sleep 1
- modprobe fuse
- sh "$HOME/Scripts/sshfs-mount/sshfs-mount" mount
- fi
- #############
- # START NOTES
- #############
- ## This script is targeted at embedded SoC devices, hence 'modprobe fuse'.
- ## It relies upon the hardwork of <https://github.com/thefekete>.
- ## <https://github.com/thefekete/sshfs-mount>.
- ###########
- # END NOTES
- ###########
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement