Version v1.48.0
This commit is contained in:
parent
52332a4b24
commit
245fed513a
77 changed files with 4919 additions and 678 deletions
|
@ -420,7 +420,7 @@ The remote name is used as the DB file name.
|
|||
- Config: db_path
|
||||
- Env Var: RCLONE_CACHE_DB_PATH
|
||||
- Type: string
|
||||
- Default: "/home/ncw/.cache/rclone/cache-backend"
|
||||
- Default: "$HOME/.cache/rclone/cache-backend"
|
||||
|
||||
#### --cache-chunk-path
|
||||
|
||||
|
@ -436,7 +436,7 @@ then "--cache-chunk-path" will use the same path as "--cache-db-path".
|
|||
- Config: chunk_path
|
||||
- Env Var: RCLONE_CACHE_CHUNK_PATH
|
||||
- Type: string
|
||||
- Default: "/home/ncw/.cache/rclone/cache-backend"
|
||||
- Default: "$HOME/.cache/rclone/cache-backend"
|
||||
|
||||
#### --cache-db-purge
|
||||
|
||||
|
|
|
@ -1,11 +1,96 @@
|
|||
---
|
||||
title: "Documentation"
|
||||
description: "Rclone Changelog"
|
||||
date: "2019-04-13"
|
||||
date: "2019-06-15"
|
||||
---
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.48.0 - 2019-06-15
|
||||
|
||||
* New commands
|
||||
* serve sftp: Serve an rclone remote over SFTP (Nick Craig-Wood)
|
||||
* New Features
|
||||
* Multi threaded downloads to local storage (Nick Craig-Wood)
|
||||
* controlled with `--multi-thread-cutoff` and `--multi-thread-streams`
|
||||
* Use rclone.conf from rclone executable directory to enable portable use (albertony)
|
||||
* Allow sync of a file and a directory with the same name (forgems)
|
||||
* this is common on bucket based remotes, eg s3, gcs
|
||||
* Add `--ignore-case-sync` for forced case insensitivity (garry415)
|
||||
* Implement `--stats-one-line-date` and `--stats-one-line-date-format` (Peter Berbec)
|
||||
* Log an ERROR for all commands which exit with non-zero status (Nick Craig-Wood)
|
||||
* Use go-homedir to read the home directory more reliably (Nick Craig-Wood)
|
||||
* Enable creating encrypted config through external script invocation (Wojciech Smigielski)
|
||||
* build: Drop support for go1.8 (Nick Craig-Wood)
|
||||
* config: Make config create/update encrypt passwords where necessary (Nick Craig-Wood)
|
||||
* copyurl: Honor `--no-check-certificate` (Stefan Breunig)
|
||||
* install: Linux skip man pages if no mandb (didil)
|
||||
* lsf: Support showing the Tier of the object (Nick Craig-Wood)
|
||||
* lsjson
|
||||
* Added EncryptedPath to output (calisro)
|
||||
* Support showing the Tier of the object (Nick Craig-Wood)
|
||||
* Add IsBucket field for bucket based remote listing of the root (Nick Craig-Wood)
|
||||
* rc
|
||||
* Add `--loopback` flag to run commands directly without a server (Nick Craig-Wood)
|
||||
* Add operations/fsinfo: Return information about the remote (Nick Craig-Wood)
|
||||
* Skip auth for OPTIONS request (Nick Craig-Wood)
|
||||
* cmd/providers: Add DefaultStr, ValueStr and Type fields (Nick Craig-Wood)
|
||||
* jobs: Make job expiry timeouts configurable (Aleksandar Jankovic)
|
||||
* serve dlna reworked and improved (Dan Walters)
|
||||
* serve ftp: add `--ftp-public-ip` flag to specify public IP (calistri)
|
||||
* serve restic: Add support for `--private-repos` in `serve restic` (Florian Apolloner)
|
||||
* serve webdav: Combine serve webdav and serve http (Gary Kim)
|
||||
* size: Ignore negative sizes when calculating total (Garry McNulty)
|
||||
* Bug Fixes
|
||||
* Make move and copy individual files obey `--backup-dir` (Nick Craig-Wood)
|
||||
* If `--ignore-checksum` is in effect, don't calculate checksum (Nick Craig-Wood)
|
||||
* moveto: Fix case-insensitive same remote move (Gary Kim)
|
||||
* rc: Fix serving bucket based objects with `--rc-serve` (Nick Craig-Wood)
|
||||
* serve webdav: Fix serveDir not being updated with changes from webdav (Gary Kim)
|
||||
* Mount
|
||||
* Fix poll interval documentation (Animosity022)
|
||||
* VFS
|
||||
* Make WriteAt for non cached files work with non-sequential writes (Nick Craig-Wood)
|
||||
* Local
|
||||
* Only calculate the required hashes for big speedup (Nick Craig-Wood)
|
||||
* Log errors when listing instead of returning an error (Nick Craig-Wood)
|
||||
* Fix preallocate warning on Linux with ZFS (Nick Craig-Wood)
|
||||
* Crypt
|
||||
* Make rclone dedupe work through crypt (Nick Craig-Wood)
|
||||
* Fix wrapping of ChangeNotify to decrypt directories properly (Nick Craig-Wood)
|
||||
* Support PublicLink (rclone link) of underlying backend (Nick Craig-Wood)
|
||||
* Implement Optional methods SetTier, GetTier (Nick Craig-Wood)
|
||||
* B2
|
||||
* Implement server side copy (Nick Craig-Wood)
|
||||
* Implement SetModTime (Nick Craig-Wood)
|
||||
* Drive
|
||||
* Fix move and copy from TeamDrive to GDrive (Fionera)
|
||||
* Add notes that cleanup works in the background on drive (Nick Craig-Wood)
|
||||
* Add `--drive-server-side-across-configs` to default back to old server side copy semantics by default (Nick Craig-Wood)
|
||||
* Add `--drive-size-as-quota` to show storage quota usage for file size (Garry McNulty)
|
||||
* FTP
|
||||
* Add FTP List timeout (Jeff Quinn)
|
||||
* Add FTP over TLS support (Gary Kim)
|
||||
* Add `--ftp-no-check-certificate` option for FTPS (Gary Kim)
|
||||
* Google Cloud Storage
|
||||
* Fix upload errors when uploading pre 1970 files (Nick Craig-Wood)
|
||||
* Jottacloud
|
||||
* Add support for selecting device and mountpoint. (buengese)
|
||||
* Mega
|
||||
* Add cleanup support (Gary Kim)
|
||||
* Onedrive
|
||||
* More accurately check if root is found (Cnly)
|
||||
* S3
|
||||
* Suppport S3 Accelerated endpoints with `--s3-use-accelerate-endpoint` (Nick Craig-Wood)
|
||||
* Add config info for Wasabi's EU Central endpoint (Robert Marko)
|
||||
* Make SetModTime work for GLACIER while syncing (Philip Harvey)
|
||||
* SFTP
|
||||
* Add About support (Gary Kim)
|
||||
* Fix about parsing of `df` results so it can cope with -ve results (Nick Craig-Wood)
|
||||
* Send custom client version and debug server version (Nick Craig-Wood)
|
||||
* WebDAV
|
||||
* Retry on 423 Locked errors (Nick Craig-Wood)
|
||||
|
||||
## v1.47.0 - 2019-04-13
|
||||
|
||||
* New backends
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone"
|
||||
slug: rclone
|
||||
url: /commands/rclone/
|
||||
|
@ -79,4 +79,4 @@ rclone [flags]
|
|||
* [rclone tree](/commands/rclone_tree/) - List the contents of the remote in a tree like fashion.
|
||||
* [rclone version](/commands/rclone_version/) - Show the version number.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone about"
|
||||
slug: rclone_about
|
||||
url: /commands/rclone_about/
|
||||
|
@ -70,4 +70,4 @@ rclone about remote: [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone authorize"
|
||||
slug: rclone_authorize
|
||||
url: /commands/rclone_authorize/
|
||||
|
@ -29,4 +29,4 @@ rclone authorize [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone cachestats"
|
||||
slug: rclone_cachestats
|
||||
url: /commands/rclone_cachestats/
|
||||
|
@ -28,4 +28,4 @@ rclone cachestats source: [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone cat"
|
||||
slug: rclone_cat
|
||||
url: /commands/rclone_cat/
|
||||
|
@ -50,4 +50,4 @@ rclone cat remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone check"
|
||||
slug: rclone_check
|
||||
url: /commands/rclone_check/
|
||||
|
@ -44,4 +44,4 @@ rclone check source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone cleanup"
|
||||
slug: rclone_cleanup
|
||||
url: /commands/rclone_cleanup/
|
||||
|
@ -29,4 +29,4 @@ rclone cleanup remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config"
|
||||
slug: rclone_config
|
||||
url: /commands/rclone_config/
|
||||
|
@ -38,4 +38,4 @@ rclone config [flags]
|
|||
* [rclone config show](/commands/rclone_config_show/) - Print (decrypted) config file, or the config for a single remote.
|
||||
* [rclone config update](/commands/rclone_config_update/) - Update options in an existing remote.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config create"
|
||||
slug: rclone_config_create
|
||||
url: /commands/rclone_config_create/
|
||||
|
@ -23,6 +23,9 @@ Note that if the config process would normally ask a question the
|
|||
default is taken. Each time that happens rclone will print a message
|
||||
saying how to affect the value taken.
|
||||
|
||||
If any of the parameters passed is a password field, then rclone will
|
||||
automatically obscure them before putting them in the config file.
|
||||
|
||||
So for example if you wanted to configure a Google Drive remote but
|
||||
using remote authorization you would do this:
|
||||
|
||||
|
@ -43,4 +46,4 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config delete"
|
||||
slug: rclone_config_delete
|
||||
url: /commands/rclone_config_delete/
|
||||
|
@ -26,4 +26,4 @@ rclone config delete <name> [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config dump"
|
||||
slug: rclone_config_dump
|
||||
url: /commands/rclone_config_dump/
|
||||
|
@ -26,4 +26,4 @@ rclone config dump [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config edit"
|
||||
slug: rclone_config_edit
|
||||
url: /commands/rclone_config_edit/
|
||||
|
@ -29,4 +29,4 @@ rclone config edit [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config file"
|
||||
slug: rclone_config_file
|
||||
url: /commands/rclone_config_file/
|
||||
|
@ -26,4 +26,4 @@ rclone config file [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config password"
|
||||
slug: rclone_config_password
|
||||
url: /commands/rclone_config_password/
|
||||
|
@ -18,6 +18,9 @@ For example to set password of a remote of name myremote you would do:
|
|||
|
||||
rclone config password myremote fieldname mypassword
|
||||
|
||||
This command is obsolete now that "config update" and "config create"
|
||||
both support obscuring passwords directly.
|
||||
|
||||
|
||||
```
|
||||
rclone config password <name> [<key> <value>]+ [flags]
|
||||
|
@ -33,4 +36,4 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config providers"
|
||||
slug: rclone_config_providers
|
||||
url: /commands/rclone_config_providers/
|
||||
|
@ -26,4 +26,4 @@ rclone config providers [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config show"
|
||||
slug: rclone_config_show
|
||||
url: /commands/rclone_config_show/
|
||||
|
@ -26,4 +26,4 @@ rclone config show [<remote>] [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone config update"
|
||||
slug: rclone_config_update
|
||||
url: /commands/rclone_config_update/
|
||||
|
@ -14,10 +14,14 @@ Update options in an existing remote.
|
|||
Update an existing remote's options. The options should be passed in
|
||||
in pairs of <key> <value>.
|
||||
|
||||
For example to update the env_auth field of a remote of name myremote you would do:
|
||||
For example to update the env_auth field of a remote of name myremote
|
||||
you would do:
|
||||
|
||||
rclone config update myremote swift env_auth true
|
||||
|
||||
If any of the parameters passed is a password field, then rclone will
|
||||
automatically obscure them before putting them in the config file.
|
||||
|
||||
If the remote uses oauth the token will be updated, if you don't
|
||||
require this add an extra parameter thus:
|
||||
|
||||
|
@ -38,4 +42,4 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||
|
||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone copy"
|
||||
slug: rclone_copy
|
||||
url: /commands/rclone_copy/
|
||||
|
@ -76,4 +76,4 @@ rclone copy source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone copyto"
|
||||
slug: rclone_copyto
|
||||
url: /commands/rclone_copyto/
|
||||
|
@ -54,4 +54,4 @@ rclone copyto source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone copyurl"
|
||||
slug: rclone_copyurl
|
||||
url: /commands/rclone_copyurl/
|
||||
|
@ -29,4 +29,4 @@ rclone copyurl https://example.com dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone cryptcheck"
|
||||
slug: rclone_cryptcheck
|
||||
url: /commands/rclone_cryptcheck/
|
||||
|
@ -54,4 +54,4 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone cryptdecode"
|
||||
slug: rclone_cryptdecode
|
||||
url: /commands/rclone_cryptdecode/
|
||||
|
@ -38,4 +38,4 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone dbhashsum"
|
||||
slug: rclone_dbhashsum
|
||||
url: /commands/rclone_dbhashsum/
|
||||
|
@ -31,4 +31,4 @@ rclone dbhashsum remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone dedupe"
|
||||
slug: rclone_dedupe
|
||||
url: /commands/rclone_dedupe/
|
||||
|
@ -107,4 +107,4 @@ rclone dedupe [mode] remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone delete"
|
||||
slug: rclone_delete
|
||||
url: /commands/rclone_delete/
|
||||
|
@ -47,4 +47,4 @@ rclone delete remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone deletefile"
|
||||
slug: rclone_deletefile
|
||||
url: /commands/rclone_deletefile/
|
||||
|
@ -30,4 +30,4 @@ rclone deletefile remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone genautocomplete"
|
||||
slug: rclone_genautocomplete
|
||||
url: /commands/rclone_genautocomplete/
|
||||
|
@ -27,4 +27,4 @@ Run with --help to list the supported shells.
|
|||
* [rclone genautocomplete bash](/commands/rclone_genautocomplete_bash/) - Output bash completion script for rclone.
|
||||
* [rclone genautocomplete zsh](/commands/rclone_genautocomplete_zsh/) - Output zsh completion script for rclone.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone genautocomplete bash"
|
||||
slug: rclone_genautocomplete_bash
|
||||
url: /commands/rclone_genautocomplete_bash/
|
||||
|
@ -41,4 +41,4 @@ rclone genautocomplete bash [output_file] [flags]
|
|||
|
||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone genautocomplete zsh"
|
||||
slug: rclone_genautocomplete_zsh
|
||||
url: /commands/rclone_genautocomplete_zsh/
|
||||
|
@ -41,4 +41,4 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||
|
||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone gendocs"
|
||||
slug: rclone_gendocs
|
||||
url: /commands/rclone_gendocs/
|
||||
|
@ -29,4 +29,4 @@ rclone gendocs output_directory [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone hashsum"
|
||||
slug: rclone_hashsum
|
||||
url: /commands/rclone_hashsum/
|
||||
|
@ -43,4 +43,4 @@ rclone hashsum <hash> remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone link"
|
||||
slug: rclone_link
|
||||
url: /commands/rclone_link/
|
||||
|
@ -36,4 +36,4 @@ rclone link remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone listremotes"
|
||||
slug: rclone_listremotes
|
||||
url: /commands/rclone_listremotes/
|
||||
|
@ -31,4 +31,4 @@ rclone listremotes [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone ls"
|
||||
slug: rclone_ls
|
||||
url: /commands/rclone_ls/
|
||||
|
@ -60,4 +60,4 @@ rclone ls remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone lsd"
|
||||
slug: rclone_lsd
|
||||
url: /commands/rclone_lsd/
|
||||
|
@ -71,4 +71,4 @@ rclone lsd remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone lsf"
|
||||
slug: rclone_lsf
|
||||
url: /commands/rclone_lsf/
|
||||
|
@ -152,4 +152,4 @@ rclone lsf remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone lsjson"
|
||||
slug: rclone_lsjson
|
||||
url: /commands/rclone_lsjson/
|
||||
|
@ -22,13 +22,16 @@ The output is an array of Items, where each Item looks like this
|
|||
},
|
||||
"ID": "y2djkhiujf83u33",
|
||||
"OrigID": "UYOJVTUW00Q1RzTDA",
|
||||
"IsBucket" : false,
|
||||
"IsDir" : false,
|
||||
"MimeType" : "application/octet-stream",
|
||||
"ModTime" : "2017-05-31T16:15:57.034468261+01:00",
|
||||
"Name" : "file.txt",
|
||||
"Encrypted" : "v0qpsdq8anpci8n929v3uu9338",
|
||||
"EncryptedPath" : "kja9098349023498/v0qpsdq8anpci8n929v3uu9338",
|
||||
"Path" : "full/path/goes/here/file.txt",
|
||||
"Size" : 6
|
||||
"Size" : 6,
|
||||
"Tier" : "hot",
|
||||
}
|
||||
|
||||
If --hash is not specified the Hashes property won't be emitted.
|
||||
|
@ -46,6 +49,10 @@ If "remote:path" contains the file "subfolder/file.txt", the Path for "file.txt"
|
|||
will be "subfolder/file.txt", not "remote:path/subfolder/file.txt".
|
||||
When used without --recursive the Path will always be the same as Name.
|
||||
|
||||
If the directory is a bucket in a bucket based backend, then
|
||||
"IsBucket" will be set to true. This key won't be present unless it is
|
||||
"true".
|
||||
|
||||
The time is in RFC3339 format with up to nanosecond precision. The
|
||||
number of decimal digits in the seconds will depend on the precision
|
||||
that the remote can hold the times, so if times are accurate to the
|
||||
|
@ -101,4 +108,4 @@ rclone lsjson remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone lsl"
|
||||
slug: rclone_lsl
|
||||
url: /commands/rclone_lsl/
|
||||
|
@ -60,4 +60,4 @@ rclone lsl remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone md5sum"
|
||||
slug: rclone_md5sum
|
||||
url: /commands/rclone_md5sum/
|
||||
|
@ -29,4 +29,4 @@ rclone md5sum remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone mkdir"
|
||||
slug: rclone_mkdir
|
||||
url: /commands/rclone_mkdir/
|
||||
|
@ -26,4 +26,4 @@ rclone mkdir remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone mount"
|
||||
slug: rclone_mount
|
||||
url: /commands/rclone_mount/
|
||||
|
@ -310,7 +310,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--fuse-flag stringArray Flags or arguments to be passed direct to libfuse/WinFsp. Repeat if required.
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for mount
|
||||
--max-read-ahead SizeSuffix The number of bytes that can be prefetched for sequential reads. (default 128k)
|
||||
--no-checksum Don't compare checksums on up/download.
|
||||
|
@ -319,7 +319,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||
-o, --option stringArray Option for libfuse/WinFsp. Repeat if required.
|
||||
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
|
||||
--read-only Mount read-only.
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem.
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
|
||||
|
@ -335,4 +335,4 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone move"
|
||||
slug: rclone_move
|
||||
url: /commands/rclone_move/
|
||||
|
@ -54,4 +54,4 @@ rclone move source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone moveto"
|
||||
slug: rclone_moveto
|
||||
url: /commands/rclone_moveto/
|
||||
|
@ -57,4 +57,4 @@ rclone moveto source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone ncdu"
|
||||
slug: rclone_ncdu
|
||||
url: /commands/rclone_ncdu/
|
||||
|
@ -57,4 +57,4 @@ rclone ncdu remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone obscure"
|
||||
slug: rclone_obscure
|
||||
url: /commands/rclone_obscure/
|
||||
|
@ -26,4 +26,4 @@ rclone obscure password [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone purge"
|
||||
slug: rclone_purge
|
||||
url: /commands/rclone_purge/
|
||||
|
@ -30,4 +30,4 @@ rclone purge remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone rc"
|
||||
slug: rclone_rc
|
||||
url: /commands/rclone_rc/
|
||||
|
@ -30,6 +30,12 @@ The --json parameter can be used to pass in a JSON blob as an input
|
|||
instead of key=value arguments. This is the only way of passing in
|
||||
more complicated values.
|
||||
|
||||
Use --loopback to connect to the rclone instance running "rclone rc".
|
||||
This is very useful for testing commands without having to run an
|
||||
rclone rc server, eg:
|
||||
|
||||
rclone rc --loopback operations/about fs=/
|
||||
|
||||
Use "rclone rc" to see a list of all possible commands.
|
||||
|
||||
```
|
||||
|
@ -41,6 +47,7 @@ rclone rc commands parameter [flags]
|
|||
```
|
||||
-h, --help help for rc
|
||||
--json string Input JSON - use instead of key=value args.
|
||||
--loopback If set connect to this rclone instance not via HTTP.
|
||||
--no-output If set don't output the JSON result.
|
||||
--pass string Password to use to connect to rclone remote control.
|
||||
--url string URL to connect to rclone remote control. (default "http://localhost:5572/")
|
||||
|
@ -51,4 +58,4 @@ rclone rc commands parameter [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone rcat"
|
||||
slug: rclone_rcat
|
||||
url: /commands/rclone_rcat/
|
||||
|
@ -48,4 +48,4 @@ rclone rcat remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone rcd"
|
||||
slug: rclone_rcd
|
||||
url: /commands/rclone_rcd/
|
||||
|
@ -36,4 +36,4 @@ rclone rcd <path to files to serve>* [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone rmdir"
|
||||
slug: rclone_rmdir
|
||||
url: /commands/rclone_rmdir/
|
||||
|
@ -28,4 +28,4 @@ rclone rmdir remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone rmdirs"
|
||||
slug: rclone_rmdirs
|
||||
url: /commands/rclone_rmdirs/
|
||||
|
@ -36,4 +36,4 @@ rclone rmdirs remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve"
|
||||
slug: rclone_serve
|
||||
url: /commands/rclone_serve/
|
||||
|
@ -38,4 +38,4 @@ rclone serve <protocol> [opts] <remote> [flags]
|
|||
* [rclone serve sftp](/commands/rclone_serve_sftp/) - Serve the remote over SFTP.
|
||||
* [rclone serve webdav](/commands/rclone_serve_webdav/) - Serve remote:path over webdav.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve dlna"
|
||||
slug: rclone_serve_dlna
|
||||
url: /commands/rclone_serve_dlna/
|
||||
|
@ -26,6 +26,11 @@ Use --addr to specify which IP address and port the server should
|
|||
listen on, eg --addr 1.2.3.4:8000 or --addr :8080 to listen to all
|
||||
IPs.
|
||||
|
||||
Use --name to choose the friendly server name, which is by
|
||||
default "rclone (hostname)".
|
||||
|
||||
Use --log-trace in conjunction with -vv to enable additional debug
|
||||
logging of all UPNP traffic.
|
||||
|
||||
### Directory Cache
|
||||
|
||||
|
@ -173,14 +178,16 @@ rclone serve dlna remote:path [flags]
|
|||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for dlna
|
||||
--log-trace enable trace logging of SOAP traffic
|
||||
--name string name of DLNA server
|
||||
--no-checksum Don't compare checksums on up/download.
|
||||
--no-modtime Don't read/write the modification time (can speed things up).
|
||||
--no-seek Don't allow seeking in files.
|
||||
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
|
||||
--read-only Mount read-only.
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
|
||||
|
@ -194,4 +201,4 @@ rclone serve dlna remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve ftp"
|
||||
slug: rclone_serve_ftp
|
||||
url: /commands/rclone_serve_ftp/
|
||||
|
@ -177,7 +177,7 @@ rclone serve ftp remote:path [flags]
|
|||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for ftp
|
||||
--no-checksum Don't compare checksums on up/download.
|
||||
--no-modtime Don't read/write the modification time (can speed things up).
|
||||
|
@ -187,7 +187,7 @@ rclone serve ftp remote:path [flags]
|
|||
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
|
||||
--public-ip string Public IP address to advertise for passive connections.
|
||||
--read-only Mount read-only.
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
||||
--user string User name for authentication. (default "anonymous")
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
|
@ -202,4 +202,4 @@ rclone serve ftp remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve http"
|
||||
slug: rclone_serve_http
|
||||
url: /commands/rclone_serve_http/
|
||||
|
@ -220,7 +220,7 @@ rclone serve http remote:path [flags]
|
|||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for http
|
||||
--htpasswd string htpasswd file - if not provided no authentication is done
|
||||
--key string SSL PEM Private key
|
||||
|
@ -234,7 +234,7 @@ rclone serve http remote:path [flags]
|
|||
--realm string realm for authentication (default "rclone")
|
||||
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
||||
--user string User name for authentication.
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
|
@ -249,4 +249,4 @@ rclone serve http remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve restic"
|
||||
slug: rclone_serve_restic
|
||||
url: /commands/rclone_serve_restic/
|
||||
|
@ -61,14 +61,14 @@ For example:
|
|||
$ export RESTIC_PASSWORD=yourpassword
|
||||
$ restic init
|
||||
created restic backend 8b1a4b56ae at rest:http://localhost:8080/
|
||||
|
||||
|
||||
Please note that knowledge of your password is required to access
|
||||
the repository. Losing your password means that your data is
|
||||
irrecoverably lost.
|
||||
$ restic backup /path/to/files/to/backup
|
||||
scan [/path/to/files/to/backup]
|
||||
scanned 189 directories, 312 files in 0:00
|
||||
[0:00] 100.00% 38.128 MiB / 38.128 MiB 501 / 501 items 0 errors ETA 0:00
|
||||
[0:00] 100.00% 38.128 MiB / 38.128 MiB 501 / 501 items 0 errors ETA 0:00
|
||||
duration: 0:00
|
||||
snapshot 45c8fdd8 saved
|
||||
|
||||
|
@ -83,6 +83,10 @@ these **must** end with /. Eg
|
|||
$ export RESTIC_REPOSITORY=rest:http://localhost:8080/user2repo/
|
||||
# backup user2 stuff
|
||||
|
||||
#### Private repositories ####
|
||||
|
||||
The "--private-repos" flag can be used to limit users to repositories starting
|
||||
with a path of "/<username>/".
|
||||
|
||||
### Server options
|
||||
|
||||
|
@ -151,6 +155,7 @@ rclone serve restic remote:path [flags]
|
|||
--key string SSL PEM Private key
|
||||
--max-header-bytes int Maximum size of request header (default 4096)
|
||||
--pass string Password for authentication.
|
||||
--private-repos users can only access their private repo
|
||||
--realm string realm for authentication (default "rclone")
|
||||
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||
|
@ -162,4 +167,4 @@ rclone serve restic remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve sftp"
|
||||
slug: rclone_serve_sftp
|
||||
url: /commands/rclone_serve_sftp/
|
||||
|
@ -28,8 +28,9 @@ default is the same as ssh) or set the --no-auth flag for no
|
|||
authentication when logging in.
|
||||
|
||||
Note that this also implements a small number of shell commands so
|
||||
that it can provide md5sum/sha1sum/df information for the sftp
|
||||
backend.
|
||||
that it can provide md5sum/sha1sum/df information for the rclone sftp
|
||||
backend. This means that is can support SHA1SUMs, MD5SUMs and the
|
||||
about command when paired with the rclone sftp backend.
|
||||
|
||||
If you don't supply a --key then rclone will generate one and cache it
|
||||
for later use.
|
||||
|
@ -188,7 +189,7 @@ rclone serve sftp remote:path [flags]
|
|||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for sftp
|
||||
--key string SSH private key file (leave blank to auto generate)
|
||||
--no-auth Allow connections with no authentication if set.
|
||||
|
@ -198,7 +199,7 @@ rclone serve sftp remote:path [flags]
|
|||
--pass string Password for authentication.
|
||||
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
|
||||
--read-only Mount read-only.
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
||||
--user string User name for authentication.
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
|
@ -213,4 +214,4 @@ rclone serve sftp remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone serve webdav"
|
||||
slug: rclone_serve_webdav
|
||||
url: /commands/rclone_serve_webdav/
|
||||
|
@ -13,8 +13,8 @@ Serve remote:path over webdav.
|
|||
|
||||
rclone serve webdav implements a basic webdav server to serve the
|
||||
remote over HTTP via the webdav protocol. This can be viewed with a
|
||||
webdav client or you can make a remote of type webdav to read and
|
||||
write it.
|
||||
webdav client, through a web browser, or you can make a remote of
|
||||
type webdav to read and write it.
|
||||
|
||||
### Webdav options
|
||||
|
||||
|
@ -227,9 +227,10 @@ rclone serve webdav remote:path [flags]
|
|||
--client-ca string Client certificate authority to verify clients with
|
||||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||
--dir-perms FileMode Directory permissions (default 0777)
|
||||
--disable-dir-list Disable HTML directory list on GET request for a directory
|
||||
--etag-hash string Which hash to use for the ETag, or auto or blank for off
|
||||
--file-perms FileMode File permissions (default 0666)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||
--gid uint32 Override the gid field set by the filesystem. (default 1000)
|
||||
-h, --help help for webdav
|
||||
--htpasswd string htpasswd file - if not provided no authentication is done
|
||||
--key string SSL PEM Private key
|
||||
|
@ -243,7 +244,7 @@ rclone serve webdav remote:path [flags]
|
|||
--realm string realm for authentication (default "rclone")
|
||||
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 502)
|
||||
--uid uint32 Override the uid field set by the filesystem. (default 1000)
|
||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
||||
--user string User name for authentication.
|
||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||
|
@ -258,4 +259,4 @@ rclone serve webdav remote:path [flags]
|
|||
|
||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone settier"
|
||||
slug: rclone_settier
|
||||
url: /commands/rclone_settier/
|
||||
|
@ -48,4 +48,4 @@ rclone settier tier remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone sha1sum"
|
||||
slug: rclone_sha1sum
|
||||
url: /commands/rclone_sha1sum/
|
||||
|
@ -29,4 +29,4 @@ rclone sha1sum remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone size"
|
||||
slug: rclone_size
|
||||
url: /commands/rclone_size/
|
||||
|
@ -27,4 +27,4 @@ rclone size remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone sync"
|
||||
slug: rclone_sync
|
||||
url: /commands/rclone_sync/
|
||||
|
@ -48,4 +48,4 @@ rclone sync source:path dest:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone touch"
|
||||
slug: rclone_touch
|
||||
url: /commands/rclone_touch/
|
||||
|
@ -28,4 +28,4 @@ rclone touch remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone tree"
|
||||
slug: rclone_tree
|
||||
url: /commands/rclone_tree/
|
||||
|
@ -69,4 +69,4 @@ rclone tree remote:path [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
date: 2019-05-10T23:12:21+01:00
|
||||
date: 2019-06-15T12:00:42+01:00
|
||||
title: "rclone version"
|
||||
slug: rclone_version
|
||||
url: /commands/rclone_version/
|
||||
|
@ -54,4 +54,4 @@ rclone version [flags]
|
|||
|
||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||
|
||||
###### Auto generated by spf13/cobra on 10-May-2019
|
||||
###### Auto generated by spf13/cobra on 15-Jun-2019
|
||||
|
|
|
@ -804,6 +804,18 @@ Keep new head revision of each file forever.
|
|||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
#### --drive-size-as-quota
|
||||
|
||||
Show storage quota usage for file size.
|
||||
|
||||
The storage used by a file is the size of the current version plus any
|
||||
older versions that have been set to keep forever.
|
||||
|
||||
- Config: size_as_quota
|
||||
- Env Var: RCLONE_DRIVE_SIZE_AS_QUOTA
|
||||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
#### --drive-v2-download-min-size
|
||||
|
||||
If Object's are greater, use drive v2 API to download.
|
||||
|
@ -831,6 +843,20 @@ Number of API calls to allow without sleeping.
|
|||
- Type: int
|
||||
- Default: 100
|
||||
|
||||
#### --drive-server-side-across-configs
|
||||
|
||||
Allow server side operations (eg copy) to work across different drive configs.
|
||||
|
||||
This can be useful if you wish to do a server side copy between two
|
||||
different Google drives. Note that this isn't enabled by default
|
||||
because it isn't easy to tell if it will work beween any two
|
||||
configurations.
|
||||
|
||||
- Config: server_side_across_configs
|
||||
- Env Var: RCLONE_DRIVE_SERVER_SIDE_ACROSS_CONFIGS
|
||||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
<!--- autogenerated options stop -->
|
||||
|
||||
### Limitations ###
|
||||
|
|
|
@ -128,7 +128,7 @@ FTP host to connect to
|
|||
|
||||
#### --ftp-user
|
||||
|
||||
FTP username, leave blank for current username, ncw
|
||||
FTP username, leave blank for current username, $USER
|
||||
|
||||
- Config: user
|
||||
- Env Var: RCLONE_FTP_USER
|
||||
|
@ -153,6 +153,15 @@ FTP password
|
|||
- Type: string
|
||||
- Default: ""
|
||||
|
||||
#### --ftp-tls
|
||||
|
||||
Use FTP over TLS (Implicit)
|
||||
|
||||
- Config: tls
|
||||
- Env Var: RCLONE_FTP_TLS
|
||||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
### Advanced Options
|
||||
|
||||
Here are the advanced options specific to ftp (FTP Connection).
|
||||
|
@ -166,6 +175,15 @@ Maximum number of FTP simultaneous connections, 0 for unlimited
|
|||
- Type: int
|
||||
- Default: 0
|
||||
|
||||
#### --ftp-no-check-certificate
|
||||
|
||||
Do not verify the TLS certificate of the server
|
||||
|
||||
- Config: no_check_certificate
|
||||
- Env Var: RCLONE_FTP_NO_CHECK_CERTIFICATE
|
||||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
<!--- autogenerated options stop -->
|
||||
|
||||
### Limitations ###
|
||||
|
|
|
@ -260,7 +260,6 @@ Show statistics for the cache remote.
|
|||
This takes the following parameters
|
||||
|
||||
- name - name of remote
|
||||
- type - type of new remote
|
||||
- type - type of the new remote
|
||||
|
||||
|
||||
|
@ -311,7 +310,6 @@ Authentication is required for this call.
|
|||
This takes the following parameters
|
||||
|
||||
- name - name of remote
|
||||
- type - type of new remote
|
||||
|
||||
|
||||
See the [config password command](/commands/rclone_config_password/) command for more information on the above.
|
||||
|
@ -332,7 +330,6 @@ Authentication is required for this call.
|
|||
This takes the following parameters
|
||||
|
||||
- name - name of remote
|
||||
- type - type of new remote
|
||||
|
||||
|
||||
See the [config update command](/commands/rclone_config_update/) command for more information on the above.
|
||||
|
@ -460,10 +457,11 @@ Results
|
|||
This takes the following parameters
|
||||
|
||||
- fs - a remote name string eg "drive:"
|
||||
- remote - a path within that remote eg "dir"
|
||||
|
||||
The result is as returned from rclone about --json
|
||||
|
||||
See the [about command](/commands/rclone_size/) command for more information on the above.
|
||||
|
||||
Authentication is required for this call.
|
||||
|
||||
### operations/cleanup: Remove trashed files in the remote or path
|
||||
|
@ -520,6 +518,63 @@ See the [deletefile command](/commands/rclone_deletefile/) command for more info
|
|||
|
||||
Authentication is required for this call.
|
||||
|
||||
### operations/fsinfo: Return information about the remote
|
||||
|
||||
This takes the following parameters
|
||||
|
||||
- fs - a remote name string eg "drive:"
|
||||
|
||||
This returns info about the remote passed in;
|
||||
|
||||
```
|
||||
{
|
||||
// optional features and whether they are available or not
|
||||
"Features": {
|
||||
"About": true,
|
||||
"BucketBased": false,
|
||||
"CanHaveEmptyDirectories": true,
|
||||
"CaseInsensitive": false,
|
||||
"ChangeNotify": false,
|
||||
"CleanUp": false,
|
||||
"Copy": false,
|
||||
"DirCacheFlush": false,
|
||||
"DirMove": true,
|
||||
"DuplicateFiles": false,
|
||||
"GetTier": false,
|
||||
"ListR": false,
|
||||
"MergeDirs": false,
|
||||
"Move": true,
|
||||
"OpenWriterAt": true,
|
||||
"PublicLink": false,
|
||||
"Purge": true,
|
||||
"PutStream": true,
|
||||
"PutUnchecked": false,
|
||||
"ReadMimeType": false,
|
||||
"ServerSideAcrossConfigs": false,
|
||||
"SetTier": false,
|
||||
"SetWrapper": false,
|
||||
"UnWrap": false,
|
||||
"WrapFs": false,
|
||||
"WriteMimeType": false
|
||||
},
|
||||
// Names of hashes available
|
||||
"Hashes": [
|
||||
"MD5",
|
||||
"SHA-1",
|
||||
"DropboxHash",
|
||||
"QuickXorHash"
|
||||
],
|
||||
"Name": "local", // Name as created
|
||||
"Precision": 1, // Precision of timestamps in ns
|
||||
"Root": "/", // Path as created
|
||||
"String": "Local file system at /" // how the remote will appear in logs
|
||||
}
|
||||
```
|
||||
|
||||
This command does not have a command line equivalent so use this instead:
|
||||
|
||||
rclone rc --loopback operations/fsinfo fs=remote:
|
||||
|
||||
### operations/list: List the given remote and path in JSON format
|
||||
|
||||
This takes the following parameters
|
||||
|
@ -538,7 +593,7 @@ The result is
|
|||
- list
|
||||
- This is an array of objects as described in the lsjson command
|
||||
|
||||
See the lsjson command for more information on the above and examples.
|
||||
See the [lsjson command](/commands/rclone_lsjson/) for more information on the above and examples.
|
||||
|
||||
Authentication is required for this call.
|
||||
|
||||
|
|
|
@ -708,6 +708,8 @@ Required when using an S3 clone.
|
|||
- Wasabi US East endpoint
|
||||
- "s3.us-west-1.wasabisys.com"
|
||||
- Wasabi US West endpoint
|
||||
- "s3.eu-central-1.wasabisys.com"
|
||||
- Wasabi EU Central endpoint
|
||||
|
||||
#### --s3-location-constraint
|
||||
|
||||
|
@ -1069,6 +1071,17 @@ Use this only if v4 signatures don't work, eg pre Jewel/v10 CEPH.
|
|||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
#### --s3-use-accelerate-endpoint
|
||||
|
||||
If true use the AWS S3 accelerated endpoint.
|
||||
|
||||
See: [AWS S3 Transfer acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration-examples.html)
|
||||
|
||||
- Config: use_accelerate_endpoint
|
||||
- Env Var: RCLONE_S3_USE_ACCELERATE_ENDPOINT
|
||||
- Type: bool
|
||||
- Default: false
|
||||
|
||||
<!--- autogenerated options stop -->
|
||||
|
||||
### Anonymous access to public buckets ###
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue