mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
Disable smart dashes so --flag
shows properly in the docs - fixes #632
This commit is contained in:
parent
79eebf1993
commit
ca841c56a8
@ -28,8 +28,8 @@ var mountCmd = &cobra.Command{
|
|||||||
Use: "mount remote:path /path/to/mountpoint",
|
Use: "mount remote:path /path/to/mountpoint",
|
||||||
Short: `Mount the remote as a mountpoint. **EXPERIMENTAL**`,
|
Short: `Mount the remote as a mountpoint. **EXPERIMENTAL**`,
|
||||||
Long: `
|
Long: `
|
||||||
rclone mount allows Linux and macOS to mount any of Rclone's cloud storage
|
rclone mount allows Linux, FreeBSD and macOS to mount any of Rclone's
|
||||||
systems as a file system with FUSE.
|
cloud storage systems as a file system with FUSE.
|
||||||
|
|
||||||
This is **EXPERIMENTAL** - use with care.
|
This is **EXPERIMENTAL** - use with care.
|
||||||
|
|
||||||
@ -62,6 +62,8 @@ work from the root - you will need to specify a bucket, or a path
|
|||||||
within the bucket. So ` + "`swift:`" + ` won't work whereas ` + "`swift:bucket`" + ` will
|
within the bucket. So ` + "`swift:`" + ` won't work whereas ` + "`swift:bucket`" + ` will
|
||||||
as will ` + "`swift:bucket/path`" + `.
|
as will ` + "`swift:bucket/path`" + `.
|
||||||
|
|
||||||
|
Only supported on Linux, FreeBSD and OS X at the moment.
|
||||||
|
|
||||||
### rclone mount vs rclone sync/copy ##
|
### rclone mount vs rclone sync/copy ##
|
||||||
|
|
||||||
File systems expect things to be 100% reliable, whereas cloud storage
|
File systems expect things to be 100% reliable, whereas cloud storage
|
||||||
@ -79,7 +81,6 @@ mount won't do that, so will be less reliable than the rclone command.
|
|||||||
|
|
||||||
### TODO ###
|
### TODO ###
|
||||||
|
|
||||||
* Tests
|
|
||||||
* Check hashes on upload/download
|
* Check hashes on upload/download
|
||||||
* Preserve timestamps
|
* Preserve timestamps
|
||||||
* Move directories
|
* Move directories
|
||||||
|
@ -7,5 +7,8 @@
|
|||||||
"baseurl": "http://rclone.org",
|
"baseurl": "http://rclone.org",
|
||||||
"title": "rclone - rsync for cloud storage",
|
"title": "rclone - rsync for cloud storage",
|
||||||
"description": "rclone - rsync for cloud storage: google drive, s3, swift, cloudfiles, dropbox, memstore...",
|
"description": "rclone - rsync for cloud storage: google drive, s3, swift, cloudfiles, dropbox, memstore...",
|
||||||
"canonifyurls": true
|
"canonifyurls": true,
|
||||||
|
"blackfriday": {
|
||||||
|
"smartDashes": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user