Changes between Version 9 and Version 10 of SshfsMnt
- Timestamp:
- Oct 14, 2015, 12:25:48 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SshfsMnt
v9 v10 11 11 12 12 # http://fuse.sourceforge.net/sshfs.html 13 14 # check that the script is being run by root 15 if [[ "$(id -u)" != "0" ]] ; then 16 echo "You must run '$0' as root or via sudo" 17 exit 1 18 fi 13 19 14 20 # the place file systems are to be mounted … … 69 75 # http://fuse.sourceforge.net/sshfs.html 70 76 77 # check that the script is being run by root 78 if [[ "$(id -u)" != "0" ]] ; then 79 echo "You must run '$0' as root or via sudo" 80 exit 1 81 fi 82 71 83 # the place file systems are to be mounted 72 84 MOUNT_POINT="/media"