rclone-mount.sh 110 B

123456
  1. pushd `dirname $0`
  2. fusermount -u mnt
  3. rm -rf mnt
  4. mkdir mnt
  5. rclone --config=rclone.conf mount theserver mnt
  6. popd