mirror of
https://github.com/rclone/rclone.git
synced 2025-08-09 21:57:59 +02:00
Version v1.40
This commit is contained in:
1397
MANUAL.html
1397
MANUAL.html
File diff suppressed because it is too large
Load Diff
2269
MANUAL.txt
2269
MANUAL.txt
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,158 @@
|
|||||||
---
|
---
|
||||||
title: "Documentation"
|
title: "Documentation"
|
||||||
description: "Rclone Changelog"
|
description: "Rclone Changelog"
|
||||||
date: "2017-12-23"
|
date: "2018-03-19"
|
||||||
---
|
---
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
* v1.40 - 2018-03-19
|
||||||
|
* New backends
|
||||||
|
* Alias backend to create aliases for existing remote names (Fabian Möller)
|
||||||
|
* New commands
|
||||||
|
* `lsf`: list for parsing purposes (Jakub Tasiemski)
|
||||||
|
* by default this is a simple non recursive list of files and directories
|
||||||
|
* it can be configured to add more info in an easy to parse way
|
||||||
|
* `serve restic`: for serving a remote as a Restic REST endpoint
|
||||||
|
* This enables restic to use any backends that rclone can access
|
||||||
|
* Thanks Alexander Neumann for help, patches and review
|
||||||
|
* `rc`: enable the remote control of a running rclone
|
||||||
|
* The running rclone must be started with --rc and related flags.
|
||||||
|
* Currently there is support for bwlimit, and flushing for mount and cache.
|
||||||
|
* New Features
|
||||||
|
* `--max-delete` flag to add a delete threshold (Bjørn Erik Pedersen)
|
||||||
|
* All backends now support RangeOption for ranged Open
|
||||||
|
* `cat`: Use RangeOption for limited fetches to make more efficient
|
||||||
|
* `cryptcheck`: make reading of nonce more efficient with RangeOption
|
||||||
|
* serve http/webdav/restic
|
||||||
|
* support SSL/TLS
|
||||||
|
* add `--user` `--pass` and `--htpasswd` for authentication
|
||||||
|
* `copy`/`move`: detect file size change during copy/move and abort transfer (ishuah)
|
||||||
|
* `cryptdecode`: added option to return encrypted file names. (ishuah)
|
||||||
|
* `lsjson`: add `--encrypted` to show encrypted name (Jakub Tasiemski)
|
||||||
|
* Add `--stats-file-name-length` to specify the printed file name length for stats (Will Gunn)
|
||||||
|
* Compile
|
||||||
|
* Code base was shuffled and factored
|
||||||
|
* backends moved into a backend directory
|
||||||
|
* large packages split up
|
||||||
|
* See the CONTRIBUTING.md doc for info as to what lives where now
|
||||||
|
* Update to using go1.10 as the default go version
|
||||||
|
* Implement daily [full integration tests](https://pub.rclone.org/integration-tests/)
|
||||||
|
* Release
|
||||||
|
* Include a source tarball and sign it and the binaries
|
||||||
|
* Sign the git tags as part of the release process
|
||||||
|
* Add .deb and .rpm packages as part of the build
|
||||||
|
* Make a beta release for all branches on the main repo (but not pull requests)
|
||||||
|
* Bug Fixes
|
||||||
|
* config: fixes errors on non existing config by loading config file only on first access
|
||||||
|
* config: retry saving the config after failure (Mateusz)
|
||||||
|
* sync: when using `--backup-dir` don't delete files if we can't set their modtime
|
||||||
|
* this fixes odd behaviour with Dropbox and `--backup-dir`
|
||||||
|
* fshttp: fix idle timeouts for HTTP connections
|
||||||
|
* `serve http`: fix serving files with : in - fixes
|
||||||
|
* Fix `--exclude-if-present` to ignore directories which it doesn't have permission for (Iakov Davydov)
|
||||||
|
* Make accounting work properly with crypt and b2
|
||||||
|
* remove `--no-traverse` flag because it is obsolete
|
||||||
|
* Mount
|
||||||
|
* Add `--attr-timeout` flag to control attribute caching in kernel
|
||||||
|
* this now defaults to 0 which is correct but less efficient
|
||||||
|
* see [the mount docs](/commands/rclone_mount/#attribute-caching) for more info
|
||||||
|
* Add `--daemon` flag to allow mount to run in the background (ishuah)
|
||||||
|
* Fix: Return ENOSYS rather than EIO on attempted link
|
||||||
|
* This fixes FileZilla accessing an rclone mount served over sftp.
|
||||||
|
* Fix setting modtime twice
|
||||||
|
* Mount tests now run on CI for Linux (mount & cmount)/Mac/Windows
|
||||||
|
* Many bugs fixed in the VFS layer - see below
|
||||||
|
* VFS
|
||||||
|
* Many fixes for `--vfs-cache-mode` writes and above
|
||||||
|
* Update cached copy if we know it has changed (fixes stale data)
|
||||||
|
* Clean path names before using them in the cache
|
||||||
|
* Disable cache cleaner if `--vfs-cache-poll-interval=0`
|
||||||
|
* Fill and clean the cache immediately on startup
|
||||||
|
* Fix Windows opening every file when it stats the file
|
||||||
|
* Fix applying modtime for an open Write Handle
|
||||||
|
* Fix creation of files when truncating
|
||||||
|
* Write 0 bytes when flushing unwritten handles to avoid race conditions in FUSE
|
||||||
|
* Downgrade "poll-interval is not supported" message to Info
|
||||||
|
* Make OpenFile and friends return EINVAL if O_RDONLY and O_TRUNC
|
||||||
|
* Local
|
||||||
|
* Downgrade "invalid cross-device link: trying copy" to debug
|
||||||
|
* Make DirMove return fs.ErrorCantDirMove to allow fallback to Copy for cross device
|
||||||
|
* Fix race conditions updating the hashes
|
||||||
|
* Cache
|
||||||
|
* Add support for polling - cache will update when remote changes on supported backends
|
||||||
|
* Reduce log level for Plex api
|
||||||
|
* Fix dir cache issue
|
||||||
|
* Implement `--cache-db-wait-time` flag
|
||||||
|
* Improve efficiency with RangeOption and RangeSeek
|
||||||
|
* Fix dirmove with temp fs enabled
|
||||||
|
* Notify vfs when using temp fs
|
||||||
|
* Offline uploading
|
||||||
|
* Remote control support for path flushing
|
||||||
|
* Amazon cloud drive
|
||||||
|
* Rclone no longer has any working keys - disable integration tests
|
||||||
|
* Implement DirChangeNotify to notify cache/vfs/mount of changes
|
||||||
|
* Azureblob
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* Improve accounting for chunked uploads
|
||||||
|
* Backblaze B2
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* Box
|
||||||
|
* Improve accounting for chunked uploads
|
||||||
|
* Dropbox
|
||||||
|
* Fix custom oauth client parameters
|
||||||
|
* Google Cloud Storage
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* Google Drive
|
||||||
|
* Migrate to api v3 (Fabian Möller)
|
||||||
|
* Add scope configuration and root folder selection
|
||||||
|
* Add `--drive-impersonate` for service accounts
|
||||||
|
* thanks to everyone who tested, explored and contributed docs
|
||||||
|
* Add `--drive-use-created-date` to use created date as modified date (nbuchanan)
|
||||||
|
* Request the export formats only when required
|
||||||
|
* This makes rclone quicker when there are no google docs
|
||||||
|
* Fix finding paths with latin1 chars (a workaround for a drive bug)
|
||||||
|
* Fix copying of a single Google doc file
|
||||||
|
* Fix `--drive-auth-owner-only` to look in all directories
|
||||||
|
* HTTP
|
||||||
|
* Fix handling of directories with & in
|
||||||
|
* Onedrive
|
||||||
|
* Removed upload cutoff and always do session uploads
|
||||||
|
* this stops the creation of multiple versions on business onedrive
|
||||||
|
* Overwrite object size value with real size when reading file. (Victor)
|
||||||
|
* this fixes oddities when onedrive misreports the size of images
|
||||||
|
* Pcloud
|
||||||
|
* Remove unused chunked upload flag and code
|
||||||
|
* Qingstor
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* S3
|
||||||
|
* Support hashes for multipart files (Chris Redekop)
|
||||||
|
* Initial support for IBM COS (S3) (Giri Badanahatti)
|
||||||
|
* Update docs to discourage use of v2 auth with CEPH and others
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* Fix server side copy and set modtime on files with + in
|
||||||
|
* SFTP
|
||||||
|
* Add option to disable remote hash check command execution (Jon Fautley)
|
||||||
|
* Add `--sftp-ask-password` flag to prompt for password when needed (Leo R. Lundgren)
|
||||||
|
* Add `set_modtime` configuration option
|
||||||
|
* Fix following of symlinks
|
||||||
|
* Fix reading config file outside of Fs setup
|
||||||
|
* Fix reading $USER in username fallback not $HOME
|
||||||
|
* Fix running under crontab - Use correct OS way of reading username
|
||||||
|
* Swift
|
||||||
|
* Fix refresh of authentication token
|
||||||
|
* in v1.39 a bug was introduced which ignored new tokens - this fixes it
|
||||||
|
* Fix extra HEAD transaction when uploading a new file
|
||||||
|
* Don't check for bucket/container presense if listing was OK
|
||||||
|
* this makes rclone do one less request per invocation
|
||||||
|
* Webdav
|
||||||
|
* Add new time formats to support mydrive.ch and others
|
||||||
* v1.39 - 2017-12-23
|
* v1.39 - 2017-12-23
|
||||||
* New backends
|
* New backends
|
||||||
* WebDAV
|
* WebDAV
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone"
|
title: "rclone"
|
||||||
slug: rclone
|
slug: rclone
|
||||||
url: /commands/rclone/
|
url: /commands/rclone/
|
||||||
---
|
---
|
||||||
## rclone
|
## rclone
|
||||||
|
|
||||||
Sync files and directories to and from local and remote object stores - v1.39
|
Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Rclone is a command line program to sync files and directories to and
|
Rclone is a command line program to sync files and directories to and
|
||||||
from various cloud storage systems and using file transfer services, such as:
|
from various cloud storage systems and using file transfer services, such as:
|
||||||
|
|
||||||
@ -80,10 +79,13 @@ rclone [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -102,17 +104,19 @@ rclone [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -134,29 +138,41 @@ rclone [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -170,12 +186,13 @@ rclone [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
-V, --version Print the version number
|
-V, --version Print the version number
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone authorize](/commands/rclone_authorize/) - Remote authorization.
|
* [rclone authorize](/commands/rclone_authorize/) - Remote authorization.
|
||||||
* [rclone cachestats](/commands/rclone_cachestats/) - Print cache stats for a remote
|
* [rclone cachestats](/commands/rclone_cachestats/) - Print cache stats for a remote
|
||||||
* [rclone cat](/commands/rclone_cat/) - Concatenates any files and sends them to stdout.
|
* [rclone cat](/commands/rclone_cat/) - Concatenates any files and sends them to stdout.
|
||||||
@ -192,10 +209,11 @@ rclone [flags]
|
|||||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
||||||
* [rclone gendocs](/commands/rclone_gendocs/) - Output markdown docs for rclone to the directory supplied.
|
* [rclone gendocs](/commands/rclone_gendocs/) - Output markdown docs for rclone to the directory supplied.
|
||||||
* [rclone listremotes](/commands/rclone_listremotes/) - List all the remotes in the config file.
|
* [rclone listremotes](/commands/rclone_listremotes/) - List all the remotes in the config file.
|
||||||
* [rclone ls](/commands/rclone_ls/) - List all the objects in the path with size and path.
|
* [rclone ls](/commands/rclone_ls/) - List the objects in the path with size and path.
|
||||||
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the path.
|
* [rclone lsd](/commands/rclone_lsd/) - List all directories/containers/buckets in the path.
|
||||||
|
* [rclone lsf](/commands/rclone_lsf/) - List directories and objects in remote:path formatted for parsing
|
||||||
* [rclone lsjson](/commands/rclone_lsjson/) - List directories and objects in the path in JSON format.
|
* [rclone lsjson](/commands/rclone_lsjson/) - List directories and objects in the path in JSON format.
|
||||||
* [rclone lsl](/commands/rclone_lsl/) - List all the objects path with modification time, size and path.
|
* [rclone lsl](/commands/rclone_lsl/) - List the objects in path with modification time, size and path.
|
||||||
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
* [rclone md5sum](/commands/rclone_md5sum/) - Produces an md5sum file for all the objects in the path.
|
||||||
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
* [rclone mkdir](/commands/rclone_mkdir/) - Make the path if it doesn't already exist.
|
||||||
* [rclone mount](/commands/rclone_mount/) - Mount the remote as a mountpoint. **EXPERIMENTAL**
|
* [rclone mount](/commands/rclone_mount/) - Mount the remote as a mountpoint. **EXPERIMENTAL**
|
||||||
@ -204,6 +222,7 @@ rclone [flags]
|
|||||||
* [rclone ncdu](/commands/rclone_ncdu/) - Explore a remote with a text based user interface.
|
* [rclone ncdu](/commands/rclone_ncdu/) - Explore a remote with a text based user interface.
|
||||||
* [rclone obscure](/commands/rclone_obscure/) - Obscure password for use in the rclone.conf
|
* [rclone obscure](/commands/rclone_obscure/) - Obscure password for use in the rclone.conf
|
||||||
* [rclone purge](/commands/rclone_purge/) - Remove the path and all of its contents.
|
* [rclone purge](/commands/rclone_purge/) - Remove the path and all of its contents.
|
||||||
|
* [rclone rc](/commands/rclone_rc/) - Run a command against a running rclone.
|
||||||
* [rclone rcat](/commands/rclone_rcat/) - Copies standard input to file on remote.
|
* [rclone rcat](/commands/rclone_rcat/) - Copies standard input to file on remote.
|
||||||
* [rclone rmdir](/commands/rclone_rmdir/) - Remove the path if empty.
|
* [rclone rmdir](/commands/rclone_rmdir/) - Remove the path if empty.
|
||||||
* [rclone rmdirs](/commands/rclone_rmdirs/) - Remove empty directories under the path.
|
* [rclone rmdirs](/commands/rclone_rmdirs/) - Remove empty directories under the path.
|
||||||
@ -215,4 +234,4 @@ rclone [flags]
|
|||||||
* [rclone tree](/commands/rclone_tree/) - List the contents of the remote in a tree like fashion.
|
* [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.
|
* [rclone version](/commands/rclone_version/) - Show the version number.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone authorize"
|
title: "rclone authorize"
|
||||||
slug: rclone_authorize
|
slug: rclone_authorize
|
||||||
url: /commands/rclone_authorize/
|
url: /commands/rclone_authorize/
|
||||||
@ -11,7 +11,6 @@ Remote authorization.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Remote authorization. Used to authorize a remote or headless
|
Remote authorization. Used to authorize a remote or headless
|
||||||
rclone from a machine with a browser - use as instructed by
|
rclone from a machine with a browser - use as instructed by
|
||||||
rclone config.
|
rclone config.
|
||||||
@ -51,10 +50,13 @@ rclone authorize [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone authorize [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone authorize [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone authorize [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone cachestats"
|
title: "rclone cachestats"
|
||||||
slug: rclone_cachestats
|
slug: rclone_cachestats
|
||||||
url: /commands/rclone_cachestats/
|
url: /commands/rclone_cachestats/
|
||||||
@ -11,7 +11,6 @@ Print cache stats for a remote
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Print cache stats for a remote in JSON format
|
Print cache stats for a remote in JSON format
|
||||||
|
|
||||||
|
|
||||||
@ -50,10 +49,13 @@ rclone cachestats source: [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -72,17 +74,19 @@ rclone cachestats source: [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -103,29 +107,41 @@ rclone cachestats source: [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -139,11 +155,12 @@ rclone cachestats source: [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone cat"
|
title: "rclone cat"
|
||||||
slug: rclone_cat
|
slug: rclone_cat
|
||||||
url: /commands/rclone_cat/
|
url: /commands/rclone_cat/
|
||||||
@ -11,7 +11,6 @@ Concatenates any files and sends them to stdout.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone cat sends any files to standard output.
|
rclone cat sends any files to standard output.
|
||||||
|
|
||||||
You can use it like this to output a single file
|
You can use it like this to output a single file
|
||||||
@ -72,10 +71,13 @@ rclone cat remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -94,17 +96,19 @@ rclone cat remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -125,29 +129,41 @@ rclone cat remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -161,11 +177,12 @@ rclone cat remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone check"
|
title: "rclone check"
|
||||||
slug: rclone_check
|
slug: rclone_check
|
||||||
url: /commands/rclone_check/
|
url: /commands/rclone_check/
|
||||||
@ -11,7 +11,6 @@ Checks the files in the source and destination match.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Checks the files in the source and destination match. It compares
|
Checks the files in the source and destination match. It compares
|
||||||
sizes and hashes (MD5 or SHA1) and logs a report of files which don't
|
sizes and hashes (MD5 or SHA1) and logs a report of files which don't
|
||||||
match. It doesn't alter the source or destination.
|
match. It doesn't alter the source or destination.
|
||||||
@ -61,10 +60,13 @@ rclone check source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -83,17 +85,19 @@ rclone check source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -114,29 +118,41 @@ rclone check source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -150,11 +166,12 @@ rclone check source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone cleanup"
|
title: "rclone cleanup"
|
||||||
slug: rclone_cleanup
|
slug: rclone_cleanup
|
||||||
url: /commands/rclone_cleanup/
|
url: /commands/rclone_cleanup/
|
||||||
@ -11,7 +11,6 @@ Clean up the remote if possible
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Clean up the remote if possible. Empty the trash or delete old file
|
Clean up the remote if possible. Empty the trash or delete old file
|
||||||
versions. Not supported by all remotes.
|
versions. Not supported by all remotes.
|
||||||
|
|
||||||
@ -51,10 +50,13 @@ rclone cleanup remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone cleanup remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone cleanup remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone cleanup remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config"
|
title: "rclone config"
|
||||||
slug: rclone_config
|
slug: rclone_config
|
||||||
url: /commands/rclone_config/
|
url: /commands/rclone_config/
|
||||||
@ -10,7 +10,6 @@ Enter an interactive configuration session.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Enter an interactive configuration session where you can setup new
|
Enter an interactive configuration session where you can setup new
|
||||||
remotes and manage existing ones. You may also set or remove a
|
remotes and manage existing ones. You may also set or remove a
|
||||||
password to protect your configuration.
|
password to protect your configuration.
|
||||||
@ -51,10 +50,13 @@ rclone config [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone config [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone config [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,12 +156,13 @@ rclone config [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
* [rclone config create](/commands/rclone_config_create/) - Create a new remote with name, type and options.
|
* [rclone config create](/commands/rclone_config_create/) - Create a new remote with name, type and options.
|
||||||
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote <name>.
|
* [rclone config delete](/commands/rclone_config_delete/) - Delete an existing remote <name>.
|
||||||
* [rclone config dump](/commands/rclone_config_dump/) - Dump the config file as JSON.
|
* [rclone config dump](/commands/rclone_config_dump/) - Dump the config file as JSON.
|
||||||
@ -156,4 +173,4 @@ rclone config [flags]
|
|||||||
* [rclone config show](/commands/rclone_config_show/) - Print (decrypted) config file, or the config for a single remote.
|
* [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.
|
* [rclone config update](/commands/rclone_config_update/) - Update options in an existing remote.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config create"
|
title: "rclone config create"
|
||||||
slug: rclone_config_create
|
slug: rclone_config_create
|
||||||
url: /commands/rclone_config_create/
|
url: /commands/rclone_config_create/
|
||||||
@ -11,7 +11,6 @@ Create a new remote with name, type and options.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Create a new remote of <name> with <type> and options. The options
|
Create a new remote of <name> with <type> and options. The options
|
||||||
should be passed in in pairs of <key> <value>.
|
should be passed in in pairs of <key> <value>.
|
||||||
|
|
||||||
@ -56,10 +55,13 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -78,17 +80,19 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -109,29 +113,41 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -145,11 +161,12 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config delete"
|
title: "rclone config delete"
|
||||||
slug: rclone_config_delete
|
slug: rclone_config_delete
|
||||||
url: /commands/rclone_config_delete/
|
url: /commands/rclone_config_delete/
|
||||||
@ -10,7 +10,6 @@ Delete an existing remote <name>.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Delete an existing remote <name>.
|
Delete an existing remote <name>.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone config delete <name> [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone config delete <name> [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone config delete <name> [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone config delete <name> [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config dump"
|
title: "rclone config dump"
|
||||||
slug: rclone_config_dump
|
slug: rclone_config_dump
|
||||||
url: /commands/rclone_config_dump/
|
url: /commands/rclone_config_dump/
|
||||||
@ -10,7 +10,6 @@ Dump the config file as JSON.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Dump the config file as JSON.
|
Dump the config file as JSON.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone config dump [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone config dump [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone config dump [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone config dump [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config edit"
|
title: "rclone config edit"
|
||||||
slug: rclone_config_edit
|
slug: rclone_config_edit
|
||||||
url: /commands/rclone_config_edit/
|
url: /commands/rclone_config_edit/
|
||||||
@ -10,7 +10,6 @@ Enter an interactive configuration session.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Enter an interactive configuration session where you can setup new
|
Enter an interactive configuration session where you can setup new
|
||||||
remotes and manage existing ones. You may also set or remove a
|
remotes and manage existing ones. You may also set or remove a
|
||||||
password to protect your configuration.
|
password to protect your configuration.
|
||||||
@ -51,10 +50,13 @@ rclone config edit [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone config edit [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone config edit [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone config edit [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config file"
|
title: "rclone config file"
|
||||||
slug: rclone_config_file
|
slug: rclone_config_file
|
||||||
url: /commands/rclone_config_file/
|
url: /commands/rclone_config_file/
|
||||||
@ -10,7 +10,6 @@ Show path of configuration file in use.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Show path of configuration file in use.
|
Show path of configuration file in use.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone config file [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone config file [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone config file [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone config file [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config password"
|
title: "rclone config password"
|
||||||
slug: rclone_config_password
|
slug: rclone_config_password
|
||||||
url: /commands/rclone_config_password/
|
url: /commands/rclone_config_password/
|
||||||
@ -11,7 +11,6 @@ Update password in an existing remote.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Update an existing remote's password. The password
|
Update an existing remote's password. The password
|
||||||
should be passed in in pairs of <key> <value>.
|
should be passed in in pairs of <key> <value>.
|
||||||
|
|
||||||
@ -55,10 +54,13 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -77,17 +79,19 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -108,29 +112,41 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -144,11 +160,12 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config providers"
|
title: "rclone config providers"
|
||||||
slug: rclone_config_providers
|
slug: rclone_config_providers
|
||||||
url: /commands/rclone_config_providers/
|
url: /commands/rclone_config_providers/
|
||||||
@ -10,7 +10,6 @@ List in JSON format all the providers and options.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List in JSON format all the providers and options.
|
List in JSON format all the providers and options.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone config providers [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone config providers [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone config providers [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone config providers [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config show"
|
title: "rclone config show"
|
||||||
slug: rclone_config_show
|
slug: rclone_config_show
|
||||||
url: /commands/rclone_config_show/
|
url: /commands/rclone_config_show/
|
||||||
@ -10,7 +10,6 @@ Print (decrypted) config file, or the config for a single remote.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Print (decrypted) config file, or the config for a single remote.
|
Print (decrypted) config file, or the config for a single remote.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone config show [<remote>] [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone config show [<remote>] [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone config show [<remote>] [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone config show [<remote>] [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone config update"
|
title: "rclone config update"
|
||||||
slug: rclone_config_update
|
slug: rclone_config_update
|
||||||
url: /commands/rclone_config_update/
|
url: /commands/rclone_config_update/
|
||||||
@ -11,7 +11,6 @@ Update options in an existing remote.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Update an existing remote's options. The options should be passed in
|
Update an existing remote's options. The options should be passed in
|
||||||
in pairs of <key> <value>.
|
in pairs of <key> <value>.
|
||||||
|
|
||||||
@ -55,10 +54,13 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -77,17 +79,19 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -108,29 +112,41 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -144,11 +160,12 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
* [rclone config](/commands/rclone_config/) - Enter an interactive configuration session.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone copy"
|
title: "rclone copy"
|
||||||
slug: rclone_copy
|
slug: rclone_copy
|
||||||
url: /commands/rclone_copy/
|
url: /commands/rclone_copy/
|
||||||
@ -11,7 +11,6 @@ Copy files from source to dest, skipping already copied
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Copy the source to the destination. Doesn't transfer
|
Copy the source to the destination. Doesn't transfer
|
||||||
unchanged files, testing by size and modification time or
|
unchanged files, testing by size and modification time or
|
||||||
MD5SUM. Doesn't delete files from the destination.
|
MD5SUM. Doesn't delete files from the destination.
|
||||||
@ -48,9 +47,6 @@ written a trailing / - meaning "copy the contents of this directory".
|
|||||||
This applies to all commands and whether you are talking about the
|
This applies to all commands and whether you are talking about the
|
||||||
source or destination.
|
source or destination.
|
||||||
|
|
||||||
See the `--no-traverse` option for controlling whether rclone lists
|
|
||||||
the destination directory or not.
|
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone copy source:path dest:path [flags]
|
rclone copy source:path dest:path [flags]
|
||||||
@ -87,10 +83,13 @@ rclone copy source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -109,17 +108,19 @@ rclone copy source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -140,29 +141,41 @@ rclone copy source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -176,11 +189,12 @@ rclone copy source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone copyto"
|
title: "rclone copyto"
|
||||||
slug: rclone_copyto
|
slug: rclone_copyto
|
||||||
url: /commands/rclone_copyto/
|
url: /commands/rclone_copyto/
|
||||||
@ -11,7 +11,6 @@ Copy files from source to dest, skipping already copied
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If source:path is a file or directory then it copies it to a file or
|
If source:path is a file or directory then it copies it to a file or
|
||||||
directory named dest:path.
|
directory named dest:path.
|
||||||
|
|
||||||
@ -74,10 +73,13 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -96,17 +98,19 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -127,29 +131,41 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -163,11 +179,12 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone cryptcheck"
|
title: "rclone cryptcheck"
|
||||||
slug: rclone_cryptcheck
|
slug: rclone_cryptcheck
|
||||||
url: /commands/rclone_cryptcheck/
|
url: /commands/rclone_cryptcheck/
|
||||||
@ -11,7 +11,6 @@ Cryptcheck checks the integrity of a crypted remote.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone cryptcheck checks a remote against a crypted remote. This is
|
rclone cryptcheck checks a remote against a crypted remote. This is
|
||||||
the equivalent of running rclone check, but able to check the
|
the equivalent of running rclone check, but able to check the
|
||||||
checksums of the crypted remote.
|
checksums of the crypted remote.
|
||||||
@ -71,10 +70,13 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -93,17 +95,19 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -124,29 +128,41 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -160,11 +176,12 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone cryptdecode"
|
title: "rclone cryptdecode"
|
||||||
slug: rclone_cryptdecode
|
slug: rclone_cryptdecode
|
||||||
url: /commands/rclone_cryptdecode/
|
url: /commands/rclone_cryptdecode/
|
||||||
@ -11,14 +11,17 @@ Cryptdecode returns unencrypted file names.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone cryptdecode returns unencrypted file names when provided with
|
rclone cryptdecode returns unencrypted file names when provided with
|
||||||
a list of encrypted file names. List limit is 10 items.
|
a list of encrypted file names. List limit is 10 items.
|
||||||
|
|
||||||
|
If you supply the --reverse flag, it will return encrypted file names.
|
||||||
|
|
||||||
use it like this
|
use it like this
|
||||||
|
|
||||||
rclone cryptdecode encryptedremote: encryptedfilename1 encryptedfilename2
|
rclone cryptdecode encryptedremote: encryptedfilename1 encryptedfilename2
|
||||||
|
|
||||||
|
rclone cryptdecode --reverse encryptedremote: filename1 filename2
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
||||||
@ -27,7 +30,8 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
### Options
|
### Options
|
||||||
|
|
||||||
```
|
```
|
||||||
-h, --help help for cryptdecode
|
-h, --help help for cryptdecode
|
||||||
|
--reverse Reverse cryptdecode, encrypts filenames
|
||||||
```
|
```
|
||||||
|
|
||||||
### Options inherited from parent commands
|
### Options inherited from parent commands
|
||||||
@ -55,10 +59,13 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -77,17 +84,19 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -108,29 +117,41 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -144,11 +165,12 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone dbhashsum"
|
title: "rclone dbhashsum"
|
||||||
slug: rclone_dbhashsum
|
slug: rclone_dbhashsum
|
||||||
url: /commands/rclone_dbhashsum/
|
url: /commands/rclone_dbhashsum/
|
||||||
@ -11,7 +11,6 @@ Produces a Dropbox hash file for all the objects in the path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Produces a Dropbox hash file for all the objects in the path. The
|
Produces a Dropbox hash file for all the objects in the path. The
|
||||||
hashes are calculated according to [Dropbox content hash
|
hashes are calculated according to [Dropbox content hash
|
||||||
rules](https://www.dropbox.com/developers/reference/content-hash).
|
rules](https://www.dropbox.com/developers/reference/content-hash).
|
||||||
@ -53,10 +52,13 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -75,17 +77,19 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -106,29 +110,41 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -142,11 +158,12 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone dedupe"
|
title: "rclone dedupe"
|
||||||
slug: rclone_dedupe
|
slug: rclone_dedupe
|
||||||
url: /commands/rclone_dedupe/
|
url: /commands/rclone_dedupe/
|
||||||
@ -11,7 +11,6 @@ Interactively find duplicate files and delete/rename them.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
By default `dedupe` interactively finds duplicate files and offers to
|
By default `dedupe` interactively finds duplicate files and offers to
|
||||||
delete all but one or rename them to be different. Only useful with
|
delete all but one or rename them to be different. Only useful with
|
||||||
Google Drive which can have duplicate file names.
|
Google Drive which can have duplicate file names.
|
||||||
@ -128,10 +127,13 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -150,17 +152,19 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -181,29 +185,41 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -217,11 +233,12 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone delete"
|
title: "rclone delete"
|
||||||
slug: rclone_delete
|
slug: rclone_delete
|
||||||
url: /commands/rclone_delete/
|
url: /commands/rclone_delete/
|
||||||
@ -11,7 +11,6 @@ Remove the contents of path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Remove the contents of path. Unlike `purge` it obeys include/exclude
|
Remove the contents of path. Unlike `purge` it obeys include/exclude
|
||||||
filters so can be used to selectively delete files.
|
filters so can be used to selectively delete files.
|
||||||
|
|
||||||
@ -65,10 +64,13 @@ rclone delete remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -87,17 +89,19 @@ rclone delete remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -118,29 +122,41 @@ rclone delete remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -154,11 +170,12 @@ rclone delete remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone genautocomplete"
|
title: "rclone genautocomplete"
|
||||||
slug: rclone_genautocomplete
|
slug: rclone_genautocomplete
|
||||||
url: /commands/rclone_genautocomplete/
|
url: /commands/rclone_genautocomplete/
|
||||||
@ -11,7 +11,6 @@ Output completion script for a given shell.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Generates a shell completion script for rclone.
|
Generates a shell completion script for rclone.
|
||||||
Run with --help to list the supported shells.
|
Run with --help to list the supported shells.
|
||||||
|
|
||||||
@ -47,10 +46,13 @@ Run with --help to list the supported shells.
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -69,17 +71,19 @@ Run with --help to list the supported shells.
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -100,29 +104,41 @@ Run with --help to list the supported shells.
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -136,13 +152,14 @@ Run with --help to list the supported shells.
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
* [rclone genautocomplete bash](/commands/rclone_genautocomplete_bash/) - Output bash completion script for rclone.
|
* [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.
|
* [rclone genautocomplete zsh](/commands/rclone_genautocomplete_zsh/) - Output zsh completion script for rclone.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone genautocomplete bash"
|
title: "rclone genautocomplete bash"
|
||||||
slug: rclone_genautocomplete_bash
|
slug: rclone_genautocomplete_bash
|
||||||
url: /commands/rclone_genautocomplete_bash/
|
url: /commands/rclone_genautocomplete_bash/
|
||||||
@ -11,7 +11,6 @@ Output bash completion script for rclone.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Generates a bash shell autocompletion script for rclone.
|
Generates a bash shell autocompletion script for rclone.
|
||||||
|
|
||||||
This writes to /etc/bash_completion.d/rclone by default so will
|
This writes to /etc/bash_completion.d/rclone by default so will
|
||||||
@ -63,10 +62,13 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -85,17 +87,19 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -116,29 +120,41 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -152,11 +168,12 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone genautocomplete zsh"
|
title: "rclone genautocomplete zsh"
|
||||||
slug: rclone_genautocomplete_zsh
|
slug: rclone_genautocomplete_zsh
|
||||||
url: /commands/rclone_genautocomplete_zsh/
|
url: /commands/rclone_genautocomplete_zsh/
|
||||||
@ -11,7 +11,6 @@ Output zsh completion script for rclone.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Generates a zsh autocompletion script for rclone.
|
Generates a zsh autocompletion script for rclone.
|
||||||
|
|
||||||
This writes to /usr/share/zsh/vendor-completions/_rclone by default so will
|
This writes to /usr/share/zsh/vendor-completions/_rclone by default so will
|
||||||
@ -63,10 +62,13 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -85,17 +87,19 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -116,29 +120,41 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -152,11 +168,12 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
* [rclone genautocomplete](/commands/rclone_genautocomplete/) - Output completion script for a given shell.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone gendocs"
|
title: "rclone gendocs"
|
||||||
slug: rclone_gendocs
|
slug: rclone_gendocs
|
||||||
url: /commands/rclone_gendocs/
|
url: /commands/rclone_gendocs/
|
||||||
@ -11,7 +11,6 @@ Output markdown docs for rclone to the directory supplied.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This produces markdown docs for the rclone commands to the directory
|
This produces markdown docs for the rclone commands to the directory
|
||||||
supplied. These are in a format suitable for hugo to render into the
|
supplied. These are in a format suitable for hugo to render into the
|
||||||
rclone.org website.
|
rclone.org website.
|
||||||
@ -51,10 +50,13 @@ rclone gendocs output_directory [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone gendocs output_directory [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone gendocs output_directory [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone gendocs output_directory [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone listremotes"
|
title: "rclone listremotes"
|
||||||
slug: rclone_listremotes
|
slug: rclone_listremotes
|
||||||
url: /commands/rclone_listremotes/
|
url: /commands/rclone_listremotes/
|
||||||
@ -11,7 +11,6 @@ List all the remotes in the config file.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone listremotes lists all the available remotes from the config file.
|
rclone listremotes lists all the available remotes from the config file.
|
||||||
|
|
||||||
When uses with the -l flag it lists the types too.
|
When uses with the -l flag it lists the types too.
|
||||||
@ -53,10 +52,13 @@ rclone listremotes [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -75,17 +77,19 @@ rclone listremotes [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -106,29 +110,41 @@ rclone listremotes [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -142,11 +158,12 @@ rclone listremotes [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,17 +1,37 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone ls"
|
title: "rclone ls"
|
||||||
slug: rclone_ls
|
slug: rclone_ls
|
||||||
url: /commands/rclone_ls/
|
url: /commands/rclone_ls/
|
||||||
---
|
---
|
||||||
## rclone ls
|
## rclone ls
|
||||||
|
|
||||||
List all the objects in the path with size and path.
|
List the objects in the path with size and path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all the objects in the path with size and path.
|
Lists the objects in the source path to standard output in a human
|
||||||
|
readable format with size and path. Recurses by default.
|
||||||
|
|
||||||
|
Any of the filtering options can be applied to this commmand.
|
||||||
|
|
||||||
|
There are several related list commands
|
||||||
|
|
||||||
|
* `ls` to list size and path of objects only
|
||||||
|
* `lsl` to list modification time, size and path of objects only
|
||||||
|
* `lsd` to list directories only
|
||||||
|
* `lsf` to list objects and directories in easy to parse format
|
||||||
|
* `lsjson` to list objects and directories in JSON format
|
||||||
|
|
||||||
|
`ls`,`lsl`,`lsd` are designed to be human readable.
|
||||||
|
`lsf` is designed to be human and machine readable.
|
||||||
|
`lsjson` is designed to be machine readable.
|
||||||
|
|
||||||
|
Note that `ls`,`lsl`,`lsd` all recurse by default - use "--max-depth 1" to stop the recursion.
|
||||||
|
|
||||||
|
The other list commands `lsf`,`lsjson` do not recurse by default - use "-R" to make them recurse.
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone ls remote:path [flags]
|
rclone ls remote:path [flags]
|
||||||
@ -48,10 +68,13 @@ rclone ls remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +93,19 @@ rclone ls remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +126,41 @@ rclone ls remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +174,12 @@ rclone ls remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone lsd"
|
title: "rclone lsd"
|
||||||
slug: rclone_lsd
|
slug: rclone_lsd
|
||||||
url: /commands/rclone_lsd/
|
url: /commands/rclone_lsd/
|
||||||
@ -11,7 +11,27 @@ List all directories/containers/buckets in the path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all directories/containers/buckets in the path.
|
Lists the directories in the source path to standard output. Recurses
|
||||||
|
by default.
|
||||||
|
|
||||||
|
Any of the filtering options can be applied to this commmand.
|
||||||
|
|
||||||
|
There are several related list commands
|
||||||
|
|
||||||
|
* `ls` to list size and path of objects only
|
||||||
|
* `lsl` to list modification time, size and path of objects only
|
||||||
|
* `lsd` to list directories only
|
||||||
|
* `lsf` to list objects and directories in easy to parse format
|
||||||
|
* `lsjson` to list objects and directories in JSON format
|
||||||
|
|
||||||
|
`ls`,`lsl`,`lsd` are designed to be human readable.
|
||||||
|
`lsf` is designed to be human and machine readable.
|
||||||
|
`lsjson` is designed to be machine readable.
|
||||||
|
|
||||||
|
Note that `ls`,`lsl`,`lsd` all recurse by default - use "--max-depth 1" to stop the recursion.
|
||||||
|
|
||||||
|
The other list commands `lsf`,`lsjson` do not recurse by default - use "-R" to make them recurse.
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone lsd remote:path [flags]
|
rclone lsd remote:path [flags]
|
||||||
@ -48,10 +68,13 @@ rclone lsd remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +93,19 @@ rclone lsd remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +126,41 @@ rclone lsd remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +174,12 @@ rclone lsd remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
223
docs/content/commands/rclone_lsf.md
Normal file
223
docs/content/commands/rclone_lsf.md
Normal file
@ -0,0 +1,223 @@
|
|||||||
|
---
|
||||||
|
date: 2018-03-19T10:05:30Z
|
||||||
|
title: "rclone lsf"
|
||||||
|
slug: rclone_lsf
|
||||||
|
url: /commands/rclone_lsf/
|
||||||
|
---
|
||||||
|
## rclone lsf
|
||||||
|
|
||||||
|
List directories and objects in remote:path formatted for parsing
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
List the contents of the source path (directories and objects) to
|
||||||
|
standard output in a form which is easy to parse by scripts. By
|
||||||
|
default this will just be the names of the objects and directories,
|
||||||
|
one per line. The directories will have a / suffix.
|
||||||
|
|
||||||
|
Use the --format option to control what gets listed. By default this
|
||||||
|
is just the path, but you can use these parameters to control the
|
||||||
|
output:
|
||||||
|
|
||||||
|
p - path
|
||||||
|
s - size
|
||||||
|
t - modification time
|
||||||
|
h - hash
|
||||||
|
|
||||||
|
So if you wanted the path, size and modification time, you would use
|
||||||
|
--format "pst", or maybe --format "tsp" to put the path last.
|
||||||
|
|
||||||
|
If you specify "h" in the format you will get the MD5 hash by default,
|
||||||
|
use the "--hash" flag to change which hash you want. Note that this
|
||||||
|
can be returned as an empty string if it isn't available on the object
|
||||||
|
(and for directories), "ERROR" if there was an error reading it from
|
||||||
|
the object and "UNSUPPORTED" if that object does not support that hash
|
||||||
|
type.
|
||||||
|
|
||||||
|
For example to emulate the md5sum command you can use
|
||||||
|
|
||||||
|
rclone lsf -R --hash MD5 --format hp --separator " " --files-only .
|
||||||
|
|
||||||
|
(Though "rclone md5sum ." is an easier way of typing this.)
|
||||||
|
|
||||||
|
By default the separator is ";" this can be changed with the
|
||||||
|
--separator flag. Note that separators aren't escaped in the path so
|
||||||
|
putting it last is a good strategy.
|
||||||
|
|
||||||
|
Any of the filtering options can be applied to this commmand.
|
||||||
|
|
||||||
|
There are several related list commands
|
||||||
|
|
||||||
|
* `ls` to list size and path of objects only
|
||||||
|
* `lsl` to list modification time, size and path of objects only
|
||||||
|
* `lsd` to list directories only
|
||||||
|
* `lsf` to list objects and directories in easy to parse format
|
||||||
|
* `lsjson` to list objects and directories in JSON format
|
||||||
|
|
||||||
|
`ls`,`lsl`,`lsd` are designed to be human readable.
|
||||||
|
`lsf` is designed to be human and machine readable.
|
||||||
|
`lsjson` is designed to be machine readable.
|
||||||
|
|
||||||
|
Note that `ls`,`lsl`,`lsd` all recurse by default - use "--max-depth 1" to stop the recursion.
|
||||||
|
|
||||||
|
The other list commands `lsf`,`lsjson` do not recurse by default - use "-R" to make them recurse.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
rclone lsf remote:path [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-d, --dir-slash Append a slash to directory names. (default true)
|
||||||
|
--dirs-only Only list directories.
|
||||||
|
--files-only Only list files.
|
||||||
|
-F, --format string Output format - see help for details (default "p")
|
||||||
|
--hash h Use this hash when h is used in the format MD5|SHA-1|DropboxHash (default "MD5")
|
||||||
|
-h, --help help for lsf
|
||||||
|
-R, --recursive Recurse into the listing.
|
||||||
|
-s, --separator string Separator for the items in the format. (default ";")
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--acd-templink-threshold int Files >= this size will be downloaded via their tempLink. (default 9G)
|
||||||
|
--acd-upload-wait-per-gb duration Additional time per GB to wait after a failed complete upload to see if it appears. (default 3m0s)
|
||||||
|
--ask-password Allow prompt for password for encrypted configuration. (default true)
|
||||||
|
--auto-confirm If enabled, do not request console confirmation.
|
||||||
|
--azureblob-chunk-size int Upload chunk size. Must fit in memory. (default 4M)
|
||||||
|
--azureblob-upload-cutoff int Cutoff for switching to chunked upload (default 256M)
|
||||||
|
--b2-chunk-size int Upload chunk size. Must fit in memory. (default 96M)
|
||||||
|
--b2-hard-delete Permanently delete files on remote removal, otherwise hide files.
|
||||||
|
--b2-test-mode string A flag string for X-Bz-Test-Mode header.
|
||||||
|
--b2-upload-cutoff int Cutoff for switching to chunked upload (default 190.735M)
|
||||||
|
--b2-versions Include old versions in directory listings.
|
||||||
|
--backup-dir string Make backups into hierarchy based in DIR.
|
||||||
|
--bind string Local address to bind to for outgoing connections, IPv4, IPv6 or name.
|
||||||
|
--box-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
||||||
|
--buffer-size int Buffer size when copying files. (default 16M)
|
||||||
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
|
--cache-chunk-clean-interval string Interval at which chunk cleanup runs (default "1m")
|
||||||
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming
|
||||||
|
--cache-chunk-path string Directory to cached chunk files (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
|
--cache-writes Will cache file data on writes through the FS
|
||||||
|
--checkers int Number of checkers to run in parallel. (default 8)
|
||||||
|
-c, --checksum Skip based on checksum & size, not mod-time & size
|
||||||
|
--config string Config file. (default "/home/ncw/.rclone.conf")
|
||||||
|
--contimeout duration Connect timeout (default 1m0s)
|
||||||
|
-L, --copy-links Follow symlinks and copy the pointed to item.
|
||||||
|
--cpuprofile string Write cpu profile to file
|
||||||
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
|
--delete-after When synchronizing, delete files on destination after transfering
|
||||||
|
--delete-before When synchronizing, delete files on destination before transfering
|
||||||
|
--delete-during When synchronizing, delete files during transfer (default)
|
||||||
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
|
--drive-trashed-only Only show files that are in the trash
|
||||||
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
|
--exclude stringArray Exclude files matching pattern
|
||||||
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
|
--fast-list Use recursive list if available. Uses more memory but fewer transactions.
|
||||||
|
--files-from stringArray Read list of source-file names from file
|
||||||
|
-f, --filter stringArray Add a file-filtering rule
|
||||||
|
--filter-from stringArray Read filtering patterns from a file
|
||||||
|
--gcs-location string Default location for buckets (us|eu|asia|us-central1|us-east1|us-east4|us-west1|asia-east1|asia-noetheast1|asia-southeast1|australia-southeast1|europe-west1|europe-west2).
|
||||||
|
--gcs-storage-class string Default storage class for buckets (MULTI_REGIONAL|REGIONAL|STANDARD|NEARLINE|COLDLINE|DURABLE_REDUCED_AVAILABILITY).
|
||||||
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
|
--ignore-existing Skip all files that exist on destination
|
||||||
|
--ignore-size Ignore size when skipping use mod-time or checksum.
|
||||||
|
-I, --ignore-times Don't skip files that match size and time - transfer all files
|
||||||
|
--immutable Do not modify files. Fail if existing files have been modified.
|
||||||
|
--include stringArray Include files matching pattern
|
||||||
|
--include-from stringArray Read include patterns from file
|
||||||
|
--local-no-unicode-normalization Don't apply unicode normalization to paths and filenames
|
||||||
|
--log-file string Log everything to this file
|
||||||
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
|
--memprofile string Write memory profile to file
|
||||||
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
|
--no-traverse Obsolete - does nothing.
|
||||||
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
|
--skip-links Don't warn about skipped symlinks.
|
||||||
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
|
--suffix string Suffix for use with --backup-dir.
|
||||||
|
--swift-chunk-size int Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
|
--syslog Use Syslog for logging
|
||||||
|
--syslog-facility string Facility for syslog, eg KERN,USER,... (default "DAEMON")
|
||||||
|
--timeout duration IO idle timeout (default 5m0s)
|
||||||
|
--tpslimit float Limit HTTP transactions per second to this.
|
||||||
|
--tpslimit-burst int Max burst of transactions for --tpslimit. (default 1)
|
||||||
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
|
-u, --update Skip files that are newer on the destination.
|
||||||
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone lsjson"
|
title: "rclone lsjson"
|
||||||
slug: rclone_lsjson
|
slug: rclone_lsjson
|
||||||
url: /commands/rclone_lsjson/
|
url: /commands/rclone_lsjson/
|
||||||
@ -10,7 +10,6 @@ List directories and objects in the path in JSON format.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List directories and objects in the path in JSON format.
|
List directories and objects in the path in JSON format.
|
||||||
|
|
||||||
The output is an array of Items, where each Item looks like this
|
The output is an array of Items, where each Item looks like this
|
||||||
@ -24,19 +23,45 @@ The output is an array of Items, where each Item looks like this
|
|||||||
"IsDir" : false,
|
"IsDir" : false,
|
||||||
"ModTime" : "2017-05-31T16:15:57.034468261+01:00",
|
"ModTime" : "2017-05-31T16:15:57.034468261+01:00",
|
||||||
"Name" : "file.txt",
|
"Name" : "file.txt",
|
||||||
|
"Encrypted" : "v0qpsdq8anpci8n929v3uu9338",
|
||||||
"Path" : "full/path/goes/here/file.txt",
|
"Path" : "full/path/goes/here/file.txt",
|
||||||
"Size" : 6
|
"Size" : 6
|
||||||
}
|
}
|
||||||
|
|
||||||
If --hash is not specified the the Hashes property won't be emitted.
|
If --hash is not specified the Hashes property won't be emitted.
|
||||||
|
|
||||||
If --no-modtime is specified then ModTime will be blank.
|
If --no-modtime is specified then ModTime will be blank.
|
||||||
|
|
||||||
|
If --encrypted is not specified the Encrypted won't be emitted.
|
||||||
|
|
||||||
|
The Path field will only show folders below the remote path being listed.
|
||||||
|
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.
|
||||||
|
|
||||||
The time is in RFC3339 format with nanosecond precision.
|
The time is in RFC3339 format with nanosecond precision.
|
||||||
|
|
||||||
The whole output can be processed as a JSON blob, or alternatively it
|
The whole output can be processed as a JSON blob, or alternatively it
|
||||||
can be processed line by line as each item is written one to a line.
|
can be processed line by line as each item is written one to a line.
|
||||||
|
|
||||||
|
Any of the filtering options can be applied to this commmand.
|
||||||
|
|
||||||
|
There are several related list commands
|
||||||
|
|
||||||
|
* `ls` to list size and path of objects only
|
||||||
|
* `lsl` to list modification time, size and path of objects only
|
||||||
|
* `lsd` to list directories only
|
||||||
|
* `lsf` to list objects and directories in easy to parse format
|
||||||
|
* `lsjson` to list objects and directories in JSON format
|
||||||
|
|
||||||
|
`ls`,`lsl`,`lsd` are designed to be human readable.
|
||||||
|
`lsf` is designed to be human and machine readable.
|
||||||
|
`lsjson` is designed to be machine readable.
|
||||||
|
|
||||||
|
Note that `ls`,`lsl`,`lsd` all recurse by default - use "--max-depth 1" to stop the recursion.
|
||||||
|
|
||||||
|
The other list commands `lsf`,`lsjson` do not recurse by default - use "-R" to make them recurse.
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone lsjson remote:path [flags]
|
rclone lsjson remote:path [flags]
|
||||||
@ -45,6 +70,7 @@ rclone lsjson remote:path [flags]
|
|||||||
### Options
|
### Options
|
||||||
|
|
||||||
```
|
```
|
||||||
|
-M, --encrypted Show the encrypted names.
|
||||||
--hash Include hashes in the output (may take longer).
|
--hash Include hashes in the output (may take longer).
|
||||||
-h, --help help for lsjson
|
-h, --help help for lsjson
|
||||||
--no-modtime Don't read the modification time (can speed things up).
|
--no-modtime Don't read the modification time (can speed things up).
|
||||||
@ -76,10 +102,13 @@ rclone lsjson remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -98,17 +127,19 @@ rclone lsjson remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -129,29 +160,41 @@ rclone lsjson remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -165,11 +208,12 @@ rclone lsjson remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,17 +1,37 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone lsl"
|
title: "rclone lsl"
|
||||||
slug: rclone_lsl
|
slug: rclone_lsl
|
||||||
url: /commands/rclone_lsl/
|
url: /commands/rclone_lsl/
|
||||||
---
|
---
|
||||||
## rclone lsl
|
## rclone lsl
|
||||||
|
|
||||||
List all the objects path with modification time, size and path.
|
List the objects in path with modification time, size and path.
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
List all the objects path with modification time, size and path.
|
Lists the objects in the source path to standard output in a human
|
||||||
|
readable format with modification time, size and path. Recurses by default.
|
||||||
|
|
||||||
|
Any of the filtering options can be applied to this commmand.
|
||||||
|
|
||||||
|
There are several related list commands
|
||||||
|
|
||||||
|
* `ls` to list size and path of objects only
|
||||||
|
* `lsl` to list modification time, size and path of objects only
|
||||||
|
* `lsd` to list directories only
|
||||||
|
* `lsf` to list objects and directories in easy to parse format
|
||||||
|
* `lsjson` to list objects and directories in JSON format
|
||||||
|
|
||||||
|
`ls`,`lsl`,`lsd` are designed to be human readable.
|
||||||
|
`lsf` is designed to be human and machine readable.
|
||||||
|
`lsjson` is designed to be machine readable.
|
||||||
|
|
||||||
|
Note that `ls`,`lsl`,`lsd` all recurse by default - use "--max-depth 1" to stop the recursion.
|
||||||
|
|
||||||
|
The other list commands `lsf`,`lsjson` do not recurse by default - use "-R" to make them recurse.
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone lsl remote:path [flags]
|
rclone lsl remote:path [flags]
|
||||||
@ -48,10 +68,13 @@ rclone lsl remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +93,19 @@ rclone lsl remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +126,41 @@ rclone lsl remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +174,12 @@ rclone lsl remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone md5sum"
|
title: "rclone md5sum"
|
||||||
slug: rclone_md5sum
|
slug: rclone_md5sum
|
||||||
url: /commands/rclone_md5sum/
|
url: /commands/rclone_md5sum/
|
||||||
@ -11,7 +11,6 @@ Produces an md5sum file for all the objects in the path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Produces an md5sum file for all the objects in the path. This
|
Produces an md5sum file for all the objects in the path. This
|
||||||
is in the same format as the standard md5sum tool produces.
|
is in the same format as the standard md5sum tool produces.
|
||||||
|
|
||||||
@ -51,10 +50,13 @@ rclone md5sum remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone md5sum remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone md5sum remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone md5sum remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone mkdir"
|
title: "rclone mkdir"
|
||||||
slug: rclone_mkdir
|
slug: rclone_mkdir
|
||||||
url: /commands/rclone_mkdir/
|
url: /commands/rclone_mkdir/
|
||||||
@ -10,7 +10,6 @@ Make the path if it doesn't already exist.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Make the path if it doesn't already exist.
|
Make the path if it doesn't already exist.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone mkdir remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone mkdir remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone mkdir remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone mkdir remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone mount"
|
title: "rclone mount"
|
||||||
slug: rclone_mount
|
slug: rclone_mount
|
||||||
url: /commands/rclone_mount/
|
url: /commands/rclone_mount/
|
||||||
@ -11,7 +11,6 @@ Mount the remote as a mountpoint. **EXPERIMENTAL**
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone mount allows Linux, FreeBSD, macOS and Windows to
|
rclone mount allows Linux, FreeBSD, macOS and Windows to
|
||||||
mount any of Rclone's cloud storage systems as a file system with
|
mount any of Rclone's cloud storage systems as a file system with
|
||||||
FUSE.
|
FUSE.
|
||||||
@ -20,11 +19,6 @@ This is **EXPERIMENTAL** - use with care.
|
|||||||
|
|
||||||
First set up your remote using `rclone config`. Check it works with `rclone ls` etc.
|
First set up your remote using `rclone config`. Check it works with `rclone ls` etc.
|
||||||
|
|
||||||
You can either run mount in foreground mode or background(daemon) mode. Mount runs in
|
|
||||||
foreground mode by default, use the `--daemon` flag to specify background mode mode.
|
|
||||||
Background mode is only supported on Linux and OSX, you can only run mount in
|
|
||||||
foreground mode on Windows.
|
|
||||||
|
|
||||||
Start the mount like this
|
Start the mount like this
|
||||||
|
|
||||||
rclone mount remote:path/to/files /path/to/local/mount
|
rclone mount remote:path/to/files /path/to/local/mount
|
||||||
@ -33,21 +27,18 @@ Or on Windows like this where X: is an unused drive letter
|
|||||||
|
|
||||||
rclone mount remote:path/to/files X:
|
rclone mount remote:path/to/files X:
|
||||||
|
|
||||||
When running in background mode the user will have to stop the mount manually (specified below).
|
When the program ends, either via Ctrl+C or receiving a SIGINT or SIGTERM signal,
|
||||||
|
the mount is automatically stopped.
|
||||||
When the program ends while in foreground mode, either via Ctrl+C or receiving
|
|
||||||
a SIGINT or SIGTERM signal, the mount is automatically stopped.
|
|
||||||
|
|
||||||
The umount operation can fail, for example when the mountpoint is busy.
|
The umount operation can fail, for example when the mountpoint is busy.
|
||||||
When that happens, it is the user's responsibility to stop the mount manually.
|
When that happens, it is the user's responsibility to stop the mount manually with
|
||||||
|
|
||||||
Stopping the mount manually:
|
|
||||||
# Linux
|
# Linux
|
||||||
fusermount -u /path/to/local/mount
|
fusermount -u /path/to/local/mount
|
||||||
# OS X
|
# OS X
|
||||||
umount /path/to/local/mount
|
umount /path/to/local/mount
|
||||||
|
|
||||||
### Installing on Windows ###
|
### Installing on Windows
|
||||||
|
|
||||||
To run rclone mount on Windows, you will need to
|
To run rclone mount on Windows, you will need to
|
||||||
download and install [WinFsp](http://www.secfs.net/winfsp/).
|
download and install [WinFsp](http://www.secfs.net/winfsp/).
|
||||||
@ -60,7 +51,7 @@ uses combination with
|
|||||||
packages are by Bill Zissimopoulos who was very helpful during the
|
packages are by Bill Zissimopoulos who was very helpful during the
|
||||||
implementation of rclone mount for Windows.
|
implementation of rclone mount for Windows.
|
||||||
|
|
||||||
#### Windows caveats ####
|
#### Windows caveats
|
||||||
|
|
||||||
Note that drives created as Administrator are not visible by other
|
Note that drives created as Administrator are not visible by other
|
||||||
accounts (including the account that was elevated as
|
accounts (including the account that was elevated as
|
||||||
@ -73,13 +64,16 @@ The easiest way around this is to start the drive from a normal
|
|||||||
command prompt. It is also possible to start a drive from the SYSTEM
|
command prompt. It is also possible to start a drive from the SYSTEM
|
||||||
account (using [the WinFsp.Launcher
|
account (using [the WinFsp.Launcher
|
||||||
infrastructure](https://github.com/billziss-gh/winfsp/wiki/WinFsp-Service-Architecture))
|
infrastructure](https://github.com/billziss-gh/winfsp/wiki/WinFsp-Service-Architecture))
|
||||||
which creates drives accessible for everyone on the system.
|
which creates drives accessible for everyone on the system or
|
||||||
|
alternatively using [the nssm service manager](https://nssm.cc/usage).
|
||||||
|
|
||||||
### Limitations ###
|
### Limitations
|
||||||
|
|
||||||
This can only write files seqentially, it can only seek when reading.
|
Without the use of "--vfs-cache-mode" this can only write files
|
||||||
This means that many applications won't work with their files on an
|
sequentially, it can only seek when reading. This means that many
|
||||||
rclone mount.
|
applications won't work with their files on an rclone mount without
|
||||||
|
"--vfs-cache-mode writes" or "--vfs-cache-mode full". See the [File
|
||||||
|
Caching](#file-caching) section for more info.
|
||||||
|
|
||||||
The bucket based remotes (eg Swift, S3, Google Compute Storage, B2,
|
The bucket based remotes (eg Swift, S3, Google Compute Storage, B2,
|
||||||
Hubic) won't work from the root - you will need to specify a bucket,
|
Hubic) won't work from the root - you will need to specify a bucket,
|
||||||
@ -91,29 +85,43 @@ the directory cache.
|
|||||||
|
|
||||||
Only supported on Linux, FreeBSD, OS X and Windows at the moment.
|
Only supported on Linux, FreeBSD, OS X and Windows 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
|
||||||
systems are a long way from 100% reliable. The rclone sync/copy
|
systems are a long way from 100% reliable. The rclone sync/copy
|
||||||
commands cope with this with lots of retries. However rclone mount
|
commands cope with this with lots of retries. However rclone mount
|
||||||
can't use retries in the same way without making local copies of the
|
can't use retries in the same way without making local copies of the
|
||||||
uploads. This might happen in the future, but for the moment rclone
|
uploads. Look at the **EXPERIMENTAL** [file caching](#file-caching)
|
||||||
mount won't do that, so will be less reliable than the rclone command.
|
for solutions to make mount mount more reliable.
|
||||||
|
|
||||||
### Filters ###
|
### Attribute caching
|
||||||
|
|
||||||
|
You can use the flag --attr-timeout to set the time the kernel caches
|
||||||
|
the attributes (size, modification time etc) for directory entries.
|
||||||
|
|
||||||
|
The default is 0s - no caching - which is recommended for filesystems
|
||||||
|
which can change outside the control of the kernel.
|
||||||
|
|
||||||
|
If you set it higher ('1s' or '1m' say) then the kernel will call back
|
||||||
|
to rclone less often making it more efficient, however there may be
|
||||||
|
strange effects when files change on the remote.
|
||||||
|
|
||||||
|
This is the same as setting the attr_timeout option in mount.fuse.
|
||||||
|
|
||||||
|
### Filters
|
||||||
|
|
||||||
Note that all the rclone filters can be used to select a subset of the
|
Note that all the rclone filters can be used to select a subset of the
|
||||||
files to be visible in the mount.
|
files to be visible in the mount.
|
||||||
|
|
||||||
### systemd ###
|
### systemd
|
||||||
|
|
||||||
When running rclone mount as a systemd service, it is possible
|
When running rclone mount as a systemd service, it is possible
|
||||||
to use Type=notify. In this case the service will enter the started state
|
to use Type=notify. In this case the service will enter the started state
|
||||||
after the mountpoint has been successfully set up.
|
after the mountpoint has been successfully set up.
|
||||||
Units having the rclone mount service specified as a requirement
|
Units having the rclone mount service specified as a requirement
|
||||||
will see all files and folders immediately in this mode.
|
will see all files and folders immediately in this mode.
|
||||||
|
|
||||||
### Directory Cache ###
|
### Directory Cache
|
||||||
|
|
||||||
Using the `--dir-cache-time` flag, you can set how long a
|
Using the `--dir-cache-time` flag, you can set how long a
|
||||||
directory should be considered up to date and not refreshed from the
|
directory should be considered up to date and not refreshed from the
|
||||||
@ -128,12 +136,21 @@ like this:
|
|||||||
|
|
||||||
kill -SIGHUP $(pidof rclone)
|
kill -SIGHUP $(pidof rclone)
|
||||||
|
|
||||||
### File Caching ###
|
If you configure rclone with a [remote control](/rc) then you can use
|
||||||
|
rclone rc to flush the whole directory cache:
|
||||||
|
|
||||||
|
rclone rc vfs/forget
|
||||||
|
|
||||||
|
Or individual files or directories:
|
||||||
|
|
||||||
|
rclone rc vfs/forget file=path/to/file dir=path/to/dir
|
||||||
|
|
||||||
|
### File Caching
|
||||||
|
|
||||||
**NB** File caching is **EXPERIMENTAL** - use with care!
|
**NB** File caching is **EXPERIMENTAL** - use with care!
|
||||||
|
|
||||||
These flags control the VFS file caching options. The VFS layer is
|
These flags control the VFS file caching options. The VFS layer is
|
||||||
used by rclone mount to make a cloud storage systm work more like a
|
used by rclone mount to make a cloud storage system work more like a
|
||||||
normal file system.
|
normal file system.
|
||||||
|
|
||||||
You'll need to enable VFS caching if you want, for example, to read
|
You'll need to enable VFS caching if you want, for example, to read
|
||||||
@ -142,7 +159,7 @@ and write simultaneously to a file. See below for more details.
|
|||||||
Note that the VFS cache works in addition to the cache backend and you
|
Note that the VFS cache works in addition to the cache backend and you
|
||||||
may find that you need one or the other or both.
|
may find that you need one or the other or both.
|
||||||
|
|
||||||
--vfs-cache-dir string Directory rclone will use for caching.
|
--cache-dir string Directory rclone will use for caching.
|
||||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||||
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
||||||
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
||||||
@ -161,7 +178,7 @@ closed so if rclone is quit or dies with open files then these won't
|
|||||||
get written back to the remote. However they will still be in the on
|
get written back to the remote. However they will still be in the on
|
||||||
disk cache.
|
disk cache.
|
||||||
|
|
||||||
#### --vfs-cache-mode off ####
|
#### --vfs-cache-mode off
|
||||||
|
|
||||||
In this mode the cache will read directly from the remote and write
|
In this mode the cache will read directly from the remote and write
|
||||||
directly to the remote without caching anything on disk.
|
directly to the remote without caching anything on disk.
|
||||||
@ -176,7 +193,7 @@ This will mean some operations are not possible
|
|||||||
* Open modes O_APPEND, O_TRUNC are ignored
|
* Open modes O_APPEND, O_TRUNC are ignored
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode minimal ####
|
#### --vfs-cache-mode minimal
|
||||||
|
|
||||||
This is very similar to "off" except that files opened for read AND
|
This is very similar to "off" except that files opened for read AND
|
||||||
write will be buffered to disks. This means that files opened for
|
write will be buffered to disks. This means that files opened for
|
||||||
@ -189,7 +206,7 @@ These operations are not possible
|
|||||||
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode writes ####
|
#### --vfs-cache-mode writes
|
||||||
|
|
||||||
In this mode files opened for read only are still read directly from
|
In this mode files opened for read only are still read directly from
|
||||||
the remote, write only and read/write files are buffered to disk
|
the remote, write only and read/write files are buffered to disk
|
||||||
@ -199,14 +216,14 @@ This mode should support all normal file system operations.
|
|||||||
|
|
||||||
If an upload fails it will be retried up to --low-level-retries times.
|
If an upload fails it will be retried up to --low-level-retries times.
|
||||||
|
|
||||||
#### --vfs-cache-mode full ####
|
#### --vfs-cache-mode full
|
||||||
|
|
||||||
In this mode all reads and writes are buffered to and from disk. When
|
In this mode all reads and writes are buffered to and from disk. When
|
||||||
a file is opened for read it will be downloaded in its entirety first.
|
a file is opened for read it will be downloaded in its entirety first.
|
||||||
|
|
||||||
This may be appropriate for your needs, or you may prefer to look at
|
This may be appropriate for your needs, or you may prefer to look at
|
||||||
the cache backend which does a much more sophisticated job of caching,
|
the cache backend which does a much more sophisticated job of caching,
|
||||||
including caching directory heirachies and chunks of files.q
|
including caching directory hierarchies and chunks of files.
|
||||||
|
|
||||||
In this mode, unlike the others, when a file is written to the disk,
|
In this mode, unlike the others, when a file is written to the disk,
|
||||||
it will be kept on the disk after it is written to the remote. It
|
it will be kept on the disk after it is written to the remote. It
|
||||||
@ -228,6 +245,8 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--allow-non-empty Allow mounting over a non-empty directory.
|
--allow-non-empty Allow mounting over a non-empty directory.
|
||||||
--allow-other Allow access to other users.
|
--allow-other Allow access to other users.
|
||||||
--allow-root Allow access to root user.
|
--allow-root Allow access to root user.
|
||||||
|
--attr-timeout duration Time for which file/directory attributes are cached.
|
||||||
|
--daemon Run mount as a daemon (background mode).
|
||||||
--debug-fuse Debug the FUSE internals - needs -v.
|
--debug-fuse Debug the FUSE internals - needs -v.
|
||||||
--default-permissions Makes kernel enforce access control based on the file mode.
|
--default-permissions Makes kernel enforce access control based on the file mode.
|
||||||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||||
@ -274,10 +293,13 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -296,17 +318,19 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -327,29 +351,41 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -363,11 +399,12 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone move"
|
title: "rclone move"
|
||||||
slug: rclone_move
|
slug: rclone_move
|
||||||
url: /commands/rclone_move/
|
url: /commands/rclone_move/
|
||||||
@ -11,7 +11,6 @@ Move files from source to dest.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Moves the contents of the source directory to the destination
|
Moves the contents of the source directory to the destination
|
||||||
directory. Rclone will error if the source and destination overlap and
|
directory. Rclone will error if the source and destination overlap and
|
||||||
the remote does not support a server side directory move operation.
|
the remote does not support a server side directory move operation.
|
||||||
@ -68,10 +67,13 @@ rclone move source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -90,17 +92,19 @@ rclone move source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -121,29 +125,41 @@ rclone move source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -157,11 +173,12 @@ rclone move source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone moveto"
|
title: "rclone moveto"
|
||||||
slug: rclone_moveto
|
slug: rclone_moveto
|
||||||
url: /commands/rclone_moveto/
|
url: /commands/rclone_moveto/
|
||||||
@ -11,7 +11,6 @@ Move file or directory from source to dest.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If source:path is a file or directory then it moves it to a file or
|
If source:path is a file or directory then it moves it to a file or
|
||||||
directory named dest:path.
|
directory named dest:path.
|
||||||
|
|
||||||
@ -77,10 +76,13 @@ rclone moveto source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -99,17 +101,19 @@ rclone moveto source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -130,29 +134,41 @@ rclone moveto source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -166,11 +182,12 @@ rclone moveto source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone ncdu"
|
title: "rclone ncdu"
|
||||||
slug: rclone_ncdu
|
slug: rclone_ncdu
|
||||||
url: /commands/rclone_ncdu/
|
url: /commands/rclone_ncdu/
|
||||||
@ -11,11 +11,12 @@ Explore a remote with a text based user interface.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This displays a text based user interface allowing the navigation of a
|
This displays a text based user interface allowing the navigation of a
|
||||||
remote. It is most useful for answering the question - "What is using
|
remote. It is most useful for answering the question - "What is using
|
||||||
all my disk space?".
|
all my disk space?".
|
||||||
|
|
||||||
|
<script src="https://asciinema.org/a/157793.js" id="asciicast-157793" async></script>
|
||||||
|
|
||||||
To make the user interface it first scans the entire remote given and
|
To make the user interface it first scans the entire remote given and
|
||||||
builds an in memory representation. rclone ncdu can be used during
|
builds an in memory representation. rclone ncdu can be used during
|
||||||
this scanning phase and you will see it building up the directory
|
this scanning phase and you will see it building up the directory
|
||||||
@ -72,10 +73,13 @@ rclone ncdu remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -94,17 +98,19 @@ rclone ncdu remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -125,29 +131,41 @@ rclone ncdu remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -161,11 +179,12 @@ rclone ncdu remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone obscure"
|
title: "rclone obscure"
|
||||||
slug: rclone_obscure
|
slug: rclone_obscure
|
||||||
url: /commands/rclone_obscure/
|
url: /commands/rclone_obscure/
|
||||||
@ -10,7 +10,6 @@ Obscure password for use in the rclone.conf
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Obscure password for use in the rclone.conf
|
Obscure password for use in the rclone.conf
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone obscure password [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone obscure password [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone obscure password [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone obscure password [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone purge"
|
title: "rclone purge"
|
||||||
slug: rclone_purge
|
slug: rclone_purge
|
||||||
url: /commands/rclone_purge/
|
url: /commands/rclone_purge/
|
||||||
@ -11,7 +11,6 @@ Remove the path and all of its contents.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Remove the path and all of its contents. Note that this does not obey
|
Remove the path and all of its contents. Note that this does not obey
|
||||||
include/exclude filters - everything will be removed. Use `delete` if
|
include/exclude filters - everything will be removed. Use `delete` if
|
||||||
you want to selectively delete files.
|
you want to selectively delete files.
|
||||||
@ -52,10 +51,13 @@ rclone purge remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -74,17 +76,19 @@ rclone purge remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -105,29 +109,41 @@ rclone purge remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -141,11 +157,12 @@ rclone purge remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
174
docs/content/commands/rclone_rc.md
Normal file
174
docs/content/commands/rclone_rc.md
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
---
|
||||||
|
date: 2018-03-19T10:05:30Z
|
||||||
|
title: "rclone rc"
|
||||||
|
slug: rclone_rc
|
||||||
|
url: /commands/rclone_rc/
|
||||||
|
---
|
||||||
|
## rclone rc
|
||||||
|
|
||||||
|
Run a command against a running rclone.
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
This runs a command against a running rclone. By default it will use
|
||||||
|
that specified in the --rc-addr command.
|
||||||
|
|
||||||
|
Arguments should be passed in as parameter=value.
|
||||||
|
|
||||||
|
The result will be returned as a JSON object by default.
|
||||||
|
|
||||||
|
Use "rclone rc list" to see a list of all possible commands.
|
||||||
|
|
||||||
|
```
|
||||||
|
rclone rc commands parameter [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for rc
|
||||||
|
--no-output If set don't output the JSON result.
|
||||||
|
--url string URL to connect to rclone remote control. (default "http://localhost:5572/")
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--acd-templink-threshold int Files >= this size will be downloaded via their tempLink. (default 9G)
|
||||||
|
--acd-upload-wait-per-gb duration Additional time per GB to wait after a failed complete upload to see if it appears. (default 3m0s)
|
||||||
|
--ask-password Allow prompt for password for encrypted configuration. (default true)
|
||||||
|
--auto-confirm If enabled, do not request console confirmation.
|
||||||
|
--azureblob-chunk-size int Upload chunk size. Must fit in memory. (default 4M)
|
||||||
|
--azureblob-upload-cutoff int Cutoff for switching to chunked upload (default 256M)
|
||||||
|
--b2-chunk-size int Upload chunk size. Must fit in memory. (default 96M)
|
||||||
|
--b2-hard-delete Permanently delete files on remote removal, otherwise hide files.
|
||||||
|
--b2-test-mode string A flag string for X-Bz-Test-Mode header.
|
||||||
|
--b2-upload-cutoff int Cutoff for switching to chunked upload (default 190.735M)
|
||||||
|
--b2-versions Include old versions in directory listings.
|
||||||
|
--backup-dir string Make backups into hierarchy based in DIR.
|
||||||
|
--bind string Local address to bind to for outgoing connections, IPv4, IPv6 or name.
|
||||||
|
--box-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
||||||
|
--buffer-size int Buffer size when copying files. (default 16M)
|
||||||
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
|
--cache-chunk-clean-interval string Interval at which chunk cleanup runs (default "1m")
|
||||||
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming
|
||||||
|
--cache-chunk-path string Directory to cached chunk files (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
|
--cache-writes Will cache file data on writes through the FS
|
||||||
|
--checkers int Number of checkers to run in parallel. (default 8)
|
||||||
|
-c, --checksum Skip based on checksum & size, not mod-time & size
|
||||||
|
--config string Config file. (default "/home/ncw/.rclone.conf")
|
||||||
|
--contimeout duration Connect timeout (default 1m0s)
|
||||||
|
-L, --copy-links Follow symlinks and copy the pointed to item.
|
||||||
|
--cpuprofile string Write cpu profile to file
|
||||||
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
|
--delete-after When synchronizing, delete files on destination after transfering
|
||||||
|
--delete-before When synchronizing, delete files on destination before transfering
|
||||||
|
--delete-during When synchronizing, delete files during transfer (default)
|
||||||
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
|
--drive-trashed-only Only show files that are in the trash
|
||||||
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
|
--exclude stringArray Exclude files matching pattern
|
||||||
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
|
--fast-list Use recursive list if available. Uses more memory but fewer transactions.
|
||||||
|
--files-from stringArray Read list of source-file names from file
|
||||||
|
-f, --filter stringArray Add a file-filtering rule
|
||||||
|
--filter-from stringArray Read filtering patterns from a file
|
||||||
|
--gcs-location string Default location for buckets (us|eu|asia|us-central1|us-east1|us-east4|us-west1|asia-east1|asia-noetheast1|asia-southeast1|australia-southeast1|europe-west1|europe-west2).
|
||||||
|
--gcs-storage-class string Default storage class for buckets (MULTI_REGIONAL|REGIONAL|STANDARD|NEARLINE|COLDLINE|DURABLE_REDUCED_AVAILABILITY).
|
||||||
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
|
--ignore-existing Skip all files that exist on destination
|
||||||
|
--ignore-size Ignore size when skipping use mod-time or checksum.
|
||||||
|
-I, --ignore-times Don't skip files that match size and time - transfer all files
|
||||||
|
--immutable Do not modify files. Fail if existing files have been modified.
|
||||||
|
--include stringArray Include files matching pattern
|
||||||
|
--include-from stringArray Read include patterns from file
|
||||||
|
--local-no-unicode-normalization Don't apply unicode normalization to paths and filenames
|
||||||
|
--log-file string Log everything to this file
|
||||||
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
|
--memprofile string Write memory profile to file
|
||||||
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
|
--no-traverse Obsolete - does nothing.
|
||||||
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
|
--skip-links Don't warn about skipped symlinks.
|
||||||
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
|
--suffix string Suffix for use with --backup-dir.
|
||||||
|
--swift-chunk-size int Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
|
--syslog Use Syslog for logging
|
||||||
|
--syslog-facility string Facility for syslog, eg KERN,USER,... (default "DAEMON")
|
||||||
|
--timeout duration IO idle timeout (default 5m0s)
|
||||||
|
--tpslimit float Limit HTTP transactions per second to this.
|
||||||
|
--tpslimit-burst int Max burst of transactions for --tpslimit. (default 1)
|
||||||
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
|
-u, --update Skip files that are newer on the destination.
|
||||||
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone rcat"
|
title: "rclone rcat"
|
||||||
slug: rclone_rcat
|
slug: rclone_rcat
|
||||||
url: /commands/rclone_rcat/
|
url: /commands/rclone_rcat/
|
||||||
@ -11,7 +11,6 @@ Copies standard input to file on remote.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone rcat reads from standard input (stdin) and copies it to a
|
rclone rcat reads from standard input (stdin) and copies it to a
|
||||||
single remote file.
|
single remote file.
|
||||||
|
|
||||||
@ -70,10 +69,13 @@ rclone rcat remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -92,17 +94,19 @@ rclone rcat remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -123,29 +127,41 @@ rclone rcat remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -159,11 +175,12 @@ rclone rcat remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone rmdir"
|
title: "rclone rmdir"
|
||||||
slug: rclone_rmdir
|
slug: rclone_rmdir
|
||||||
url: /commands/rclone_rmdir/
|
url: /commands/rclone_rmdir/
|
||||||
@ -11,7 +11,6 @@ Remove the path if empty.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Remove the path. Note that you can't remove a path with
|
Remove the path. Note that you can't remove a path with
|
||||||
objects in it, use purge for that.
|
objects in it, use purge for that.
|
||||||
|
|
||||||
@ -50,10 +49,13 @@ rclone rmdir remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -72,17 +74,19 @@ rclone rmdir remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -103,29 +107,41 @@ rclone rmdir remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -139,11 +155,12 @@ rclone rmdir remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone rmdirs"
|
title: "rclone rmdirs"
|
||||||
slug: rclone_rmdirs
|
slug: rclone_rmdirs
|
||||||
url: /commands/rclone_rmdirs/
|
url: /commands/rclone_rmdirs/
|
||||||
@ -10,7 +10,6 @@ Remove empty directories under the path.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
This removes any empty directories (or directories that only contain
|
This removes any empty directories (or directories that only contain
|
||||||
empty directories) under the path that it finds, including the path if
|
empty directories) under the path that it finds, including the path if
|
||||||
it has nothing in.
|
it has nothing in.
|
||||||
@ -58,10 +57,13 @@ rclone rmdirs remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -80,17 +82,19 @@ rclone rmdirs remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -111,29 +115,41 @@ rclone rmdirs remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -147,11 +163,12 @@ rclone rmdirs remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone serve"
|
title: "rclone serve"
|
||||||
slug: rclone_serve
|
slug: rclone_serve
|
||||||
url: /commands/rclone_serve/
|
url: /commands/rclone_serve/
|
||||||
@ -10,7 +10,6 @@ Serve a remote over a protocol.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
rclone serve is used to serve a remote over a given protocol. This
|
rclone serve is used to serve a remote over a given protocol. This
|
||||||
command requires the use of a subcommand to specify the protocol, eg
|
command requires the use of a subcommand to specify the protocol, eg
|
||||||
|
|
||||||
@ -54,10 +53,13 @@ rclone serve <protocol> [opts] <remote> [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -76,17 +78,19 @@ rclone serve <protocol> [opts] <remote> [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -107,29 +111,41 @@ rclone serve <protocol> [opts] <remote> [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -143,13 +159,15 @@ rclone serve <protocol> [opts] <remote> [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
* [rclone serve http](/commands/rclone_serve_http/) - Serve the remote over HTTP.
|
* [rclone serve http](/commands/rclone_serve_http/) - Serve the remote over HTTP.
|
||||||
|
* [rclone serve restic](/commands/rclone_serve_restic/) - Serve the remote for restic's REST API.
|
||||||
* [rclone serve webdav](/commands/rclone_serve_webdav/) - Serve remote:path over webdav.
|
* [rclone serve webdav](/commands/rclone_serve_webdav/) - Serve remote:path over webdav.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone serve http"
|
title: "rclone serve http"
|
||||||
slug: rclone_serve_http
|
slug: rclone_serve_http
|
||||||
url: /commands/rclone_serve_http/
|
url: /commands/rclone_serve_http/
|
||||||
@ -10,15 +10,10 @@ Serve the remote over HTTP.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
rclone serve http implements a basic web server to serve the remote
|
rclone serve http implements a basic web server to serve the remote
|
||||||
over HTTP. This can be viewed in a web browser or you can make a
|
over HTTP. This can be viewed in a web browser or you can make a
|
||||||
remote of type http read from it.
|
remote of type http read from it.
|
||||||
|
|
||||||
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. By default it only listens on localhost.
|
|
||||||
|
|
||||||
You can use the filter flags (eg --include, --exclude) to control what
|
You can use the filter flags (eg --include, --exclude) to control what
|
||||||
is served.
|
is served.
|
||||||
|
|
||||||
@ -27,7 +22,56 @@ The server will log errors. Use -v to see access logs.
|
|||||||
--bwlimit will be respected for file transfers. Use --stats to
|
--bwlimit will be respected for file transfers. Use --stats to
|
||||||
control the stats printing.
|
control the stats printing.
|
||||||
|
|
||||||
### Directory Cache ###
|
### Server options
|
||||||
|
|
||||||
|
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. By default it only listens on localhost.
|
||||||
|
|
||||||
|
If you set --addr to listen on a public or LAN accessible IP address
|
||||||
|
then using Authentication if advised - see the next section for info.
|
||||||
|
|
||||||
|
--server-read-timeout and --server-write-timeout can be used to
|
||||||
|
control the timeouts on the server. Note that this is the total time
|
||||||
|
for a transfer.
|
||||||
|
|
||||||
|
--max-header-bytes controls the maximum number of bytes the server will
|
||||||
|
accept in the HTTP header.
|
||||||
|
|
||||||
|
#### Authentication
|
||||||
|
|
||||||
|
By default this will serve files without needing a login.
|
||||||
|
|
||||||
|
You can either use an htpasswd file which can take lots of users, or
|
||||||
|
set a single username and password with the --user and --pass flags.
|
||||||
|
|
||||||
|
Use --htpasswd /path/to/htpasswd to provide an htpasswd file. This is
|
||||||
|
in standard apache format and supports MD5, SHA1 and BCrypt for basic
|
||||||
|
authentication. Bcrypt is recommended.
|
||||||
|
|
||||||
|
To create an htpasswd file:
|
||||||
|
|
||||||
|
touch htpasswd
|
||||||
|
htpasswd -B htpasswd user
|
||||||
|
htpasswd -B htpasswd anotherUser
|
||||||
|
|
||||||
|
The password file can be updated while rclone is running.
|
||||||
|
|
||||||
|
Use --realm to set the authentication realm.
|
||||||
|
|
||||||
|
#### SSL/TLS
|
||||||
|
|
||||||
|
By default this will serve over http. If you want you can serve over
|
||||||
|
https. You will need to supply the --cert and --key flags. If you
|
||||||
|
wish to do client side certificate validation then you will need to
|
||||||
|
supply --client-ca also.
|
||||||
|
|
||||||
|
--cert should be a either a PEM encoded certificate or a concatenation
|
||||||
|
of that with the CA certificate. --key should be the PEM encoded
|
||||||
|
private key and --client-ca should be the PEM encoded client
|
||||||
|
certificate authority certificate.
|
||||||
|
|
||||||
|
### Directory Cache
|
||||||
|
|
||||||
Using the `--dir-cache-time` flag, you can set how long a
|
Using the `--dir-cache-time` flag, you can set how long a
|
||||||
directory should be considered up to date and not refreshed from the
|
directory should be considered up to date and not refreshed from the
|
||||||
@ -42,12 +86,21 @@ like this:
|
|||||||
|
|
||||||
kill -SIGHUP $(pidof rclone)
|
kill -SIGHUP $(pidof rclone)
|
||||||
|
|
||||||
### File Caching ###
|
If you configure rclone with a [remote control](/rc) then you can use
|
||||||
|
rclone rc to flush the whole directory cache:
|
||||||
|
|
||||||
|
rclone rc vfs/forget
|
||||||
|
|
||||||
|
Or individual files or directories:
|
||||||
|
|
||||||
|
rclone rc vfs/forget file=path/to/file dir=path/to/dir
|
||||||
|
|
||||||
|
### File Caching
|
||||||
|
|
||||||
**NB** File caching is **EXPERIMENTAL** - use with care!
|
**NB** File caching is **EXPERIMENTAL** - use with care!
|
||||||
|
|
||||||
These flags control the VFS file caching options. The VFS layer is
|
These flags control the VFS file caching options. The VFS layer is
|
||||||
used by rclone mount to make a cloud storage systm work more like a
|
used by rclone mount to make a cloud storage system work more like a
|
||||||
normal file system.
|
normal file system.
|
||||||
|
|
||||||
You'll need to enable VFS caching if you want, for example, to read
|
You'll need to enable VFS caching if you want, for example, to read
|
||||||
@ -56,7 +109,7 @@ and write simultaneously to a file. See below for more details.
|
|||||||
Note that the VFS cache works in addition to the cache backend and you
|
Note that the VFS cache works in addition to the cache backend and you
|
||||||
may find that you need one or the other or both.
|
may find that you need one or the other or both.
|
||||||
|
|
||||||
--vfs-cache-dir string Directory rclone will use for caching.
|
--cache-dir string Directory rclone will use for caching.
|
||||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||||
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
||||||
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
||||||
@ -75,7 +128,7 @@ closed so if rclone is quit or dies with open files then these won't
|
|||||||
get written back to the remote. However they will still be in the on
|
get written back to the remote. However they will still be in the on
|
||||||
disk cache.
|
disk cache.
|
||||||
|
|
||||||
#### --vfs-cache-mode off ####
|
#### --vfs-cache-mode off
|
||||||
|
|
||||||
In this mode the cache will read directly from the remote and write
|
In this mode the cache will read directly from the remote and write
|
||||||
directly to the remote without caching anything on disk.
|
directly to the remote without caching anything on disk.
|
||||||
@ -90,7 +143,7 @@ This will mean some operations are not possible
|
|||||||
* Open modes O_APPEND, O_TRUNC are ignored
|
* Open modes O_APPEND, O_TRUNC are ignored
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode minimal ####
|
#### --vfs-cache-mode minimal
|
||||||
|
|
||||||
This is very similar to "off" except that files opened for read AND
|
This is very similar to "off" except that files opened for read AND
|
||||||
write will be buffered to disks. This means that files opened for
|
write will be buffered to disks. This means that files opened for
|
||||||
@ -103,7 +156,7 @@ These operations are not possible
|
|||||||
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode writes ####
|
#### --vfs-cache-mode writes
|
||||||
|
|
||||||
In this mode files opened for read only are still read directly from
|
In this mode files opened for read only are still read directly from
|
||||||
the remote, write only and read/write files are buffered to disk
|
the remote, write only and read/write files are buffered to disk
|
||||||
@ -113,14 +166,14 @@ This mode should support all normal file system operations.
|
|||||||
|
|
||||||
If an upload fails it will be retried up to --low-level-retries times.
|
If an upload fails it will be retried up to --low-level-retries times.
|
||||||
|
|
||||||
#### --vfs-cache-mode full ####
|
#### --vfs-cache-mode full
|
||||||
|
|
||||||
In this mode all reads and writes are buffered to and from disk. When
|
In this mode all reads and writes are buffered to and from disk. When
|
||||||
a file is opened for read it will be downloaded in its entirety first.
|
a file is opened for read it will be downloaded in its entirety first.
|
||||||
|
|
||||||
This may be appropriate for your needs, or you may prefer to look at
|
This may be appropriate for your needs, or you may prefer to look at
|
||||||
the cache backend which does a much more sophisticated job of caching,
|
the cache backend which does a much more sophisticated job of caching,
|
||||||
including caching directory heirachies and chunks of files.q
|
including caching directory hierarchies and chunks of files.
|
||||||
|
|
||||||
In this mode, unlike the others, when a file is written to the disk,
|
In this mode, unlike the others, when a file is written to the disk,
|
||||||
it will be kept on the disk after it is written to the remote. It
|
it will be kept on the disk after it is written to the remote. It
|
||||||
@ -139,17 +192,27 @@ rclone serve http remote:path [flags]
|
|||||||
### Options
|
### Options
|
||||||
|
|
||||||
```
|
```
|
||||||
--addr string IPaddress:Port to bind server to. (default "localhost:8080")
|
--addr string IPaddress:Port or :Port to bind server to. (default "localhost:8080")
|
||||||
|
--cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--client-ca string Client certificate authority to verify clients with
|
||||||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||||
-h, --help help for http
|
-h, --help help for http
|
||||||
|
--htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--key string SSL PEM Private key
|
||||||
|
--max-header-bytes int Maximum size of request header (default 4096)
|
||||||
--no-checksum Don't compare checksums on up/download.
|
--no-checksum Don't compare checksums on up/download.
|
||||||
--no-modtime Don't read/write the modification time (can speed things up).
|
--no-modtime Don't read/write the modification time (can speed things up).
|
||||||
--no-seek Don't allow seeking in files.
|
--no-seek Don't allow seeking in files.
|
||||||
|
--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)
|
--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.
|
--read-only Mount read-only.
|
||||||
|
--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 502)
|
||||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
--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)
|
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||||
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
||||||
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
||||||
@ -180,10 +243,13 @@ rclone serve http remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -202,17 +268,19 @@ rclone serve http remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -233,29 +301,41 @@ rclone serve http remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -269,11 +349,12 @@ rclone serve http remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
298
docs/content/commands/rclone_serve_restic.md
Normal file
298
docs/content/commands/rclone_serve_restic.md
Normal file
@ -0,0 +1,298 @@
|
|||||||
|
---
|
||||||
|
date: 2018-03-19T10:05:30Z
|
||||||
|
title: "rclone serve restic"
|
||||||
|
slug: rclone_serve_restic
|
||||||
|
url: /commands/rclone_serve_restic/
|
||||||
|
---
|
||||||
|
## rclone serve restic
|
||||||
|
|
||||||
|
Serve the remote for restic's REST API.
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
rclone serve restic implements restic's REST backend API
|
||||||
|
over HTTP. This allows restic to use rclone as a data storage
|
||||||
|
mechanism for cloud providers that restic does not support directly.
|
||||||
|
|
||||||
|
[Restic](https://restic.net/) is a command line program for doing
|
||||||
|
backups.
|
||||||
|
|
||||||
|
The server will log errors. Use -v to see access logs.
|
||||||
|
|
||||||
|
--bwlimit will be respected for file transfers. Use --stats to
|
||||||
|
control the stats printing.
|
||||||
|
|
||||||
|
### Setting up rclone for use by restic ###
|
||||||
|
|
||||||
|
First [set up a remote for your chosen cloud provider](/docs/#configure).
|
||||||
|
|
||||||
|
Once you have set up the remote, check it is working with, for example
|
||||||
|
"rclone lsd remote:". You may have called the remote something other
|
||||||
|
than "remote:" - just substitute whatever you called it in the
|
||||||
|
following instructions.
|
||||||
|
|
||||||
|
Now start the rclone restic server
|
||||||
|
|
||||||
|
rclone serve restic -v remote:backup
|
||||||
|
|
||||||
|
Where you can replace "backup" in the above by whatever path in the
|
||||||
|
remote you wish to use.
|
||||||
|
|
||||||
|
By default this will serve on "localhost:8080" you can change this
|
||||||
|
with use of the "--addr" flag.
|
||||||
|
|
||||||
|
You might wish to start this server on boot.
|
||||||
|
|
||||||
|
### Setting up restic to use rclone ###
|
||||||
|
|
||||||
|
Now you can [follow the restic
|
||||||
|
instructions](http://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#rest-server)
|
||||||
|
on setting up restic.
|
||||||
|
|
||||||
|
Note that you will need restic 0.8.2 or later to interoperate with
|
||||||
|
rclone.
|
||||||
|
|
||||||
|
For the example above you will want to use "http://localhost:8080/" as
|
||||||
|
the URL for the REST server.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
$ export RESTIC_REPOSITORY=rest:http://localhost:8080/
|
||||||
|
$ 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
|
||||||
|
duration: 0:00
|
||||||
|
snapshot 45c8fdd8 saved
|
||||||
|
|
||||||
|
#### Multiple repositories ####
|
||||||
|
|
||||||
|
Note that you can use the endpoint to host multiple repositories. Do
|
||||||
|
this by adding a directory name or path after the URL. Note that
|
||||||
|
these **must** end with /. Eg
|
||||||
|
|
||||||
|
$ export RESTIC_REPOSITORY=rest:http://localhost:8080/user1repo/
|
||||||
|
# backup user1 stuff
|
||||||
|
$ export RESTIC_REPOSITORY=rest:http://localhost:8080/user2repo/
|
||||||
|
# backup user2 stuff
|
||||||
|
|
||||||
|
|
||||||
|
### Server options
|
||||||
|
|
||||||
|
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. By default it only listens on localhost.
|
||||||
|
|
||||||
|
If you set --addr to listen on a public or LAN accessible IP address
|
||||||
|
then using Authentication if advised - see the next section for info.
|
||||||
|
|
||||||
|
--server-read-timeout and --server-write-timeout can be used to
|
||||||
|
control the timeouts on the server. Note that this is the total time
|
||||||
|
for a transfer.
|
||||||
|
|
||||||
|
--max-header-bytes controls the maximum number of bytes the server will
|
||||||
|
accept in the HTTP header.
|
||||||
|
|
||||||
|
#### Authentication
|
||||||
|
|
||||||
|
By default this will serve files without needing a login.
|
||||||
|
|
||||||
|
You can either use an htpasswd file which can take lots of users, or
|
||||||
|
set a single username and password with the --user and --pass flags.
|
||||||
|
|
||||||
|
Use --htpasswd /path/to/htpasswd to provide an htpasswd file. This is
|
||||||
|
in standard apache format and supports MD5, SHA1 and BCrypt for basic
|
||||||
|
authentication. Bcrypt is recommended.
|
||||||
|
|
||||||
|
To create an htpasswd file:
|
||||||
|
|
||||||
|
touch htpasswd
|
||||||
|
htpasswd -B htpasswd user
|
||||||
|
htpasswd -B htpasswd anotherUser
|
||||||
|
|
||||||
|
The password file can be updated while rclone is running.
|
||||||
|
|
||||||
|
Use --realm to set the authentication realm.
|
||||||
|
|
||||||
|
#### SSL/TLS
|
||||||
|
|
||||||
|
By default this will serve over http. If you want you can serve over
|
||||||
|
https. You will need to supply the --cert and --key flags. If you
|
||||||
|
wish to do client side certificate validation then you will need to
|
||||||
|
supply --client-ca also.
|
||||||
|
|
||||||
|
--cert should be a either a PEM encoded certificate or a concatenation
|
||||||
|
of that with the CA certificate. --key should be the PEM encoded
|
||||||
|
private key and --client-ca should be the PEM encoded client
|
||||||
|
certificate authority certificate.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
rclone serve restic remote:path [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
--addr string IPaddress:Port or :Port to bind server to. (default "localhost:8080")
|
||||||
|
--cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--client-ca string Client certificate authority to verify clients with
|
||||||
|
-h, --help help for restic
|
||||||
|
--htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--key string SSL PEM Private key
|
||||||
|
--max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--pass string Password for authentication.
|
||||||
|
--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)
|
||||||
|
--stdio run an HTTP2 server on stdin/stdout
|
||||||
|
--user string User name for authentication.
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--acd-templink-threshold int Files >= this size will be downloaded via their tempLink. (default 9G)
|
||||||
|
--acd-upload-wait-per-gb duration Additional time per GB to wait after a failed complete upload to see if it appears. (default 3m0s)
|
||||||
|
--ask-password Allow prompt for password for encrypted configuration. (default true)
|
||||||
|
--auto-confirm If enabled, do not request console confirmation.
|
||||||
|
--azureblob-chunk-size int Upload chunk size. Must fit in memory. (default 4M)
|
||||||
|
--azureblob-upload-cutoff int Cutoff for switching to chunked upload (default 256M)
|
||||||
|
--b2-chunk-size int Upload chunk size. Must fit in memory. (default 96M)
|
||||||
|
--b2-hard-delete Permanently delete files on remote removal, otherwise hide files.
|
||||||
|
--b2-test-mode string A flag string for X-Bz-Test-Mode header.
|
||||||
|
--b2-upload-cutoff int Cutoff for switching to chunked upload (default 190.735M)
|
||||||
|
--b2-versions Include old versions in directory listings.
|
||||||
|
--backup-dir string Make backups into hierarchy based in DIR.
|
||||||
|
--bind string Local address to bind to for outgoing connections, IPv4, IPv6 or name.
|
||||||
|
--box-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
||||||
|
--buffer-size int Buffer size when copying files. (default 16M)
|
||||||
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
|
--cache-chunk-clean-interval string Interval at which chunk cleanup runs (default "1m")
|
||||||
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming
|
||||||
|
--cache-chunk-path string Directory to cached chunk files (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
|
--cache-writes Will cache file data on writes through the FS
|
||||||
|
--checkers int Number of checkers to run in parallel. (default 8)
|
||||||
|
-c, --checksum Skip based on checksum & size, not mod-time & size
|
||||||
|
--config string Config file. (default "/home/ncw/.rclone.conf")
|
||||||
|
--contimeout duration Connect timeout (default 1m0s)
|
||||||
|
-L, --copy-links Follow symlinks and copy the pointed to item.
|
||||||
|
--cpuprofile string Write cpu profile to file
|
||||||
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
|
--delete-after When synchronizing, delete files on destination after transfering
|
||||||
|
--delete-before When synchronizing, delete files on destination before transfering
|
||||||
|
--delete-during When synchronizing, delete files during transfer (default)
|
||||||
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
|
--drive-trashed-only Only show files that are in the trash
|
||||||
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
|
--exclude stringArray Exclude files matching pattern
|
||||||
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
|
--fast-list Use recursive list if available. Uses more memory but fewer transactions.
|
||||||
|
--files-from stringArray Read list of source-file names from file
|
||||||
|
-f, --filter stringArray Add a file-filtering rule
|
||||||
|
--filter-from stringArray Read filtering patterns from a file
|
||||||
|
--gcs-location string Default location for buckets (us|eu|asia|us-central1|us-east1|us-east4|us-west1|asia-east1|asia-noetheast1|asia-southeast1|australia-southeast1|europe-west1|europe-west2).
|
||||||
|
--gcs-storage-class string Default storage class for buckets (MULTI_REGIONAL|REGIONAL|STANDARD|NEARLINE|COLDLINE|DURABLE_REDUCED_AVAILABILITY).
|
||||||
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
|
--ignore-existing Skip all files that exist on destination
|
||||||
|
--ignore-size Ignore size when skipping use mod-time or checksum.
|
||||||
|
-I, --ignore-times Don't skip files that match size and time - transfer all files
|
||||||
|
--immutable Do not modify files. Fail if existing files have been modified.
|
||||||
|
--include stringArray Include files matching pattern
|
||||||
|
--include-from stringArray Read include patterns from file
|
||||||
|
--local-no-unicode-normalization Don't apply unicode normalization to paths and filenames
|
||||||
|
--log-file string Log everything to this file
|
||||||
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
|
--memprofile string Write memory profile to file
|
||||||
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
|
--no-traverse Obsolete - does nothing.
|
||||||
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
|
--skip-links Don't warn about skipped symlinks.
|
||||||
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
|
--suffix string Suffix for use with --backup-dir.
|
||||||
|
--swift-chunk-size int Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
|
--syslog Use Syslog for logging
|
||||||
|
--syslog-facility string Facility for syslog, eg KERN,USER,... (default "DAEMON")
|
||||||
|
--timeout duration IO idle timeout (default 5m0s)
|
||||||
|
--tpslimit float Limit HTTP transactions per second to this.
|
||||||
|
--tpslimit-burst int Max burst of transactions for --tpslimit. (default 1)
|
||||||
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
|
-u, --update Skip files that are newer on the destination.
|
||||||
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone serve webdav"
|
title: "rclone serve webdav"
|
||||||
slug: rclone_serve_webdav
|
slug: rclone_serve_webdav
|
||||||
url: /commands/rclone_serve_webdav/
|
url: /commands/rclone_serve_webdav/
|
||||||
@ -11,7 +11,6 @@ Serve remote:path over webdav.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone serve webdav implements a basic webdav server to serve the
|
rclone serve webdav implements a basic webdav server to serve the
|
||||||
remote over HTTP via the webdav protocol. This can be viewed with a
|
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
|
webdav client or you can make a remote of type webdav to read and
|
||||||
@ -20,8 +19,56 @@ write it.
|
|||||||
NB at the moment each directory listing reads the start of each file
|
NB at the moment each directory listing reads the start of each file
|
||||||
which is undesirable: see https://github.com/golang/go/issues/22577
|
which is undesirable: see https://github.com/golang/go/issues/22577
|
||||||
|
|
||||||
|
### Server options
|
||||||
|
|
||||||
### Directory Cache ###
|
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. By default it only listens on localhost.
|
||||||
|
|
||||||
|
If you set --addr to listen on a public or LAN accessible IP address
|
||||||
|
then using Authentication if advised - see the next section for info.
|
||||||
|
|
||||||
|
--server-read-timeout and --server-write-timeout can be used to
|
||||||
|
control the timeouts on the server. Note that this is the total time
|
||||||
|
for a transfer.
|
||||||
|
|
||||||
|
--max-header-bytes controls the maximum number of bytes the server will
|
||||||
|
accept in the HTTP header.
|
||||||
|
|
||||||
|
#### Authentication
|
||||||
|
|
||||||
|
By default this will serve files without needing a login.
|
||||||
|
|
||||||
|
You can either use an htpasswd file which can take lots of users, or
|
||||||
|
set a single username and password with the --user and --pass flags.
|
||||||
|
|
||||||
|
Use --htpasswd /path/to/htpasswd to provide an htpasswd file. This is
|
||||||
|
in standard apache format and supports MD5, SHA1 and BCrypt for basic
|
||||||
|
authentication. Bcrypt is recommended.
|
||||||
|
|
||||||
|
To create an htpasswd file:
|
||||||
|
|
||||||
|
touch htpasswd
|
||||||
|
htpasswd -B htpasswd user
|
||||||
|
htpasswd -B htpasswd anotherUser
|
||||||
|
|
||||||
|
The password file can be updated while rclone is running.
|
||||||
|
|
||||||
|
Use --realm to set the authentication realm.
|
||||||
|
|
||||||
|
#### SSL/TLS
|
||||||
|
|
||||||
|
By default this will serve over http. If you want you can serve over
|
||||||
|
https. You will need to supply the --cert and --key flags. If you
|
||||||
|
wish to do client side certificate validation then you will need to
|
||||||
|
supply --client-ca also.
|
||||||
|
|
||||||
|
--cert should be a either a PEM encoded certificate or a concatenation
|
||||||
|
of that with the CA certificate. --key should be the PEM encoded
|
||||||
|
private key and --client-ca should be the PEM encoded client
|
||||||
|
certificate authority certificate.
|
||||||
|
|
||||||
|
### Directory Cache
|
||||||
|
|
||||||
Using the `--dir-cache-time` flag, you can set how long a
|
Using the `--dir-cache-time` flag, you can set how long a
|
||||||
directory should be considered up to date and not refreshed from the
|
directory should be considered up to date and not refreshed from the
|
||||||
@ -36,12 +83,21 @@ like this:
|
|||||||
|
|
||||||
kill -SIGHUP $(pidof rclone)
|
kill -SIGHUP $(pidof rclone)
|
||||||
|
|
||||||
### File Caching ###
|
If you configure rclone with a [remote control](/rc) then you can use
|
||||||
|
rclone rc to flush the whole directory cache:
|
||||||
|
|
||||||
|
rclone rc vfs/forget
|
||||||
|
|
||||||
|
Or individual files or directories:
|
||||||
|
|
||||||
|
rclone rc vfs/forget file=path/to/file dir=path/to/dir
|
||||||
|
|
||||||
|
### File Caching
|
||||||
|
|
||||||
**NB** File caching is **EXPERIMENTAL** - use with care!
|
**NB** File caching is **EXPERIMENTAL** - use with care!
|
||||||
|
|
||||||
These flags control the VFS file caching options. The VFS layer is
|
These flags control the VFS file caching options. The VFS layer is
|
||||||
used by rclone mount to make a cloud storage systm work more like a
|
used by rclone mount to make a cloud storage system work more like a
|
||||||
normal file system.
|
normal file system.
|
||||||
|
|
||||||
You'll need to enable VFS caching if you want, for example, to read
|
You'll need to enable VFS caching if you want, for example, to read
|
||||||
@ -50,7 +106,7 @@ and write simultaneously to a file. See below for more details.
|
|||||||
Note that the VFS cache works in addition to the cache backend and you
|
Note that the VFS cache works in addition to the cache backend and you
|
||||||
may find that you need one or the other or both.
|
may find that you need one or the other or both.
|
||||||
|
|
||||||
--vfs-cache-dir string Directory rclone will use for caching.
|
--cache-dir string Directory rclone will use for caching.
|
||||||
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||||
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
||||||
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
||||||
@ -69,7 +125,7 @@ closed so if rclone is quit or dies with open files then these won't
|
|||||||
get written back to the remote. However they will still be in the on
|
get written back to the remote. However they will still be in the on
|
||||||
disk cache.
|
disk cache.
|
||||||
|
|
||||||
#### --vfs-cache-mode off ####
|
#### --vfs-cache-mode off
|
||||||
|
|
||||||
In this mode the cache will read directly from the remote and write
|
In this mode the cache will read directly from the remote and write
|
||||||
directly to the remote without caching anything on disk.
|
directly to the remote without caching anything on disk.
|
||||||
@ -84,7 +140,7 @@ This will mean some operations are not possible
|
|||||||
* Open modes O_APPEND, O_TRUNC are ignored
|
* Open modes O_APPEND, O_TRUNC are ignored
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode minimal ####
|
#### --vfs-cache-mode minimal
|
||||||
|
|
||||||
This is very similar to "off" except that files opened for read AND
|
This is very similar to "off" except that files opened for read AND
|
||||||
write will be buffered to disks. This means that files opened for
|
write will be buffered to disks. This means that files opened for
|
||||||
@ -97,7 +153,7 @@ These operations are not possible
|
|||||||
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
* Files opened for write only will ignore O_APPEND, O_TRUNC
|
||||||
* If an upload fails it can't be retried
|
* If an upload fails it can't be retried
|
||||||
|
|
||||||
#### --vfs-cache-mode writes ####
|
#### --vfs-cache-mode writes
|
||||||
|
|
||||||
In this mode files opened for read only are still read directly from
|
In this mode files opened for read only are still read directly from
|
||||||
the remote, write only and read/write files are buffered to disk
|
the remote, write only and read/write files are buffered to disk
|
||||||
@ -107,14 +163,14 @@ This mode should support all normal file system operations.
|
|||||||
|
|
||||||
If an upload fails it will be retried up to --low-level-retries times.
|
If an upload fails it will be retried up to --low-level-retries times.
|
||||||
|
|
||||||
#### --vfs-cache-mode full ####
|
#### --vfs-cache-mode full
|
||||||
|
|
||||||
In this mode all reads and writes are buffered to and from disk. When
|
In this mode all reads and writes are buffered to and from disk. When
|
||||||
a file is opened for read it will be downloaded in its entirety first.
|
a file is opened for read it will be downloaded in its entirety first.
|
||||||
|
|
||||||
This may be appropriate for your needs, or you may prefer to look at
|
This may be appropriate for your needs, or you may prefer to look at
|
||||||
the cache backend which does a much more sophisticated job of caching,
|
the cache backend which does a much more sophisticated job of caching,
|
||||||
including caching directory heirachies and chunks of files.q
|
including caching directory hierarchies and chunks of files.
|
||||||
|
|
||||||
In this mode, unlike the others, when a file is written to the disk,
|
In this mode, unlike the others, when a file is written to the disk,
|
||||||
it will be kept on the disk after it is written to the remote. It
|
it will be kept on the disk after it is written to the remote. It
|
||||||
@ -133,17 +189,27 @@ rclone serve webdav remote:path [flags]
|
|||||||
### Options
|
### Options
|
||||||
|
|
||||||
```
|
```
|
||||||
--addr string IPaddress:Port to bind server to. (default "localhost:8081")
|
--addr string IPaddress:Port or :Port to bind server to. (default "localhost:8080")
|
||||||
|
--cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--client-ca string Client certificate authority to verify clients with
|
||||||
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
|
||||||
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
--gid uint32 Override the gid field set by the filesystem. (default 502)
|
||||||
-h, --help help for webdav
|
-h, --help help for webdav
|
||||||
|
--htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--key string SSL PEM Private key
|
||||||
|
--max-header-bytes int Maximum size of request header (default 4096)
|
||||||
--no-checksum Don't compare checksums on up/download.
|
--no-checksum Don't compare checksums on up/download.
|
||||||
--no-modtime Don't read/write the modification time (can speed things up).
|
--no-modtime Don't read/write the modification time (can speed things up).
|
||||||
--no-seek Don't allow seeking in files.
|
--no-seek Don't allow seeking in files.
|
||||||
|
--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)
|
--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.
|
--read-only Mount read-only.
|
||||||
|
--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 502)
|
||||||
--umask int Override the permission bits set by the filesystem. (default 2)
|
--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)
|
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
|
||||||
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")
|
||||||
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
|
||||||
@ -174,10 +240,13 @@ rclone serve webdav remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -196,17 +265,19 @@ rclone serve webdav remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -227,29 +298,41 @@ rclone serve webdav remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -263,11 +346,12 @@ rclone serve webdav remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone sha1sum"
|
title: "rclone sha1sum"
|
||||||
slug: rclone_sha1sum
|
slug: rclone_sha1sum
|
||||||
url: /commands/rclone_sha1sum/
|
url: /commands/rclone_sha1sum/
|
||||||
@ -11,7 +11,6 @@ Produces an sha1sum file for all the objects in the path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Produces an sha1sum file for all the objects in the path. This
|
Produces an sha1sum file for all the objects in the path. This
|
||||||
is in the same format as the standard sha1sum tool produces.
|
is in the same format as the standard sha1sum tool produces.
|
||||||
|
|
||||||
@ -51,10 +50,13 @@ rclone sha1sum remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -73,17 +75,19 @@ rclone sha1sum remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -104,29 +108,41 @@ rclone sha1sum remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -140,11 +156,12 @@ rclone sha1sum remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone size"
|
title: "rclone size"
|
||||||
slug: rclone_size
|
slug: rclone_size
|
||||||
url: /commands/rclone_size/
|
url: /commands/rclone_size/
|
||||||
@ -10,7 +10,6 @@ Prints the total size and number of objects in remote:path.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Prints the total size and number of objects in remote:path.
|
Prints the total size and number of objects in remote:path.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone size remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone size remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone size remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone size remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone sync"
|
title: "rclone sync"
|
||||||
slug: rclone_sync
|
slug: rclone_sync
|
||||||
url: /commands/rclone_sync/
|
url: /commands/rclone_sync/
|
||||||
@ -11,7 +11,6 @@ Make source and dest identical, modifying destination only.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Sync the source to the destination, changing the destination
|
Sync the source to the destination, changing the destination
|
||||||
only. Doesn't transfer unchanged files, testing by size and
|
only. Doesn't transfer unchanged files, testing by size and
|
||||||
modification time or MD5SUM. Destination is updated to match
|
modification time or MD5SUM. Destination is updated to match
|
||||||
@ -67,10 +66,13 @@ rclone sync source:path dest:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -89,17 +91,19 @@ rclone sync source:path dest:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -120,29 +124,41 @@ rclone sync source:path dest:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -156,11 +172,12 @@ rclone sync source:path dest:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone touch"
|
title: "rclone touch"
|
||||||
slug: rclone_touch
|
slug: rclone_touch
|
||||||
url: /commands/rclone_touch/
|
url: /commands/rclone_touch/
|
||||||
@ -10,7 +10,6 @@ Create new file or change file modification time.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Create new file or change file modification time.
|
Create new file or change file modification time.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -50,10 +49,13 @@ rclone touch remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -72,17 +74,19 @@ rclone touch remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -103,29 +107,41 @@ rclone touch remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -139,11 +155,12 @@ rclone touch remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone tree"
|
title: "rclone tree"
|
||||||
slug: rclone_tree
|
slug: rclone_tree
|
||||||
url: /commands/rclone_tree/
|
url: /commands/rclone_tree/
|
||||||
@ -11,7 +11,6 @@ List the contents of the remote in a tree like fashion.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rclone tree lists the contents of a remote in a similar way to the
|
rclone tree lists the contents of a remote in a similar way to the
|
||||||
unix tree command.
|
unix tree command.
|
||||||
|
|
||||||
@ -91,10 +90,13 @@ rclone tree remote:path [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -113,17 +115,19 @@ rclone tree remote:path [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -144,29 +148,41 @@ rclone tree remote:path [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -180,11 +196,12 @@ rclone tree remote:path [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2017-12-23T13:05:26Z
|
date: 2018-03-19T10:05:30Z
|
||||||
title: "rclone version"
|
title: "rclone version"
|
||||||
slug: rclone_version
|
slug: rclone_version
|
||||||
url: /commands/rclone_version/
|
url: /commands/rclone_version/
|
||||||
@ -10,7 +10,6 @@ Show the version number.
|
|||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Show the version number.
|
Show the version number.
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -48,10 +47,13 @@ rclone version [flags]
|
|||||||
--cache-chunk-size string The size of a chunk (default "5M")
|
--cache-chunk-size string The size of a chunk (default "5M")
|
||||||
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to cache DB (default "/home/ncw/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Purge the cache DB before
|
--cache-db-purge Purge the cache DB before
|
||||||
|
--cache-db-wait-time duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
||||||
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
--cache-dir string Directory rclone will use for caching. (default "/home/ncw/.cache/rclone")
|
||||||
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
--cache-info-age string How much time should object info be stored in cache (default "6h")
|
||||||
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
--cache-read-retries int How many times to retry a read from a cache storage (default 10)
|
||||||
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
--cache-rps int Limits the number of requests per second to the source FS. -1 disables the rate limiter (default -1)
|
||||||
|
--cache-tmp-upload-path string Directory to keep temporary files until they are uploaded to the cloud storage
|
||||||
|
--cache-tmp-wait-time string How long should files be stored in local cache before being uploaded (default "15m")
|
||||||
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
--cache-total-chunk-size string The total size which the chunks can take up from the disk (default "10G")
|
||||||
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
--cache-workers int How many workers should run in parallel to download chunks (default 4)
|
||||||
--cache-writes Will cache file data on writes through the FS
|
--cache-writes Will cache file data on writes through the FS
|
||||||
@ -70,17 +72,19 @@ rclone version [flags]
|
|||||||
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
--drive-auth-owner-only Only consider files owned by the authenticated user.
|
||||||
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
--drive-chunk-size int Upload chunk size. Must a power of 2 >= 256k. (default 8M)
|
||||||
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
--drive-formats string Comma separated list of preferred formats for downloading Google docs. (default "docx,xlsx,pptx,svg")
|
||||||
|
--drive-impersonate string Impersonate this user when using a service account.
|
||||||
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
--drive-list-chunk int Size of listing chunk 100-1000. 0 to disable. (default 1000)
|
||||||
--drive-shared-with-me Only show files that are shared with me
|
--drive-shared-with-me Only show files that are shared with me
|
||||||
--drive-skip-gdocs Skip google documents in all listings.
|
--drive-skip-gdocs Skip google documents in all listings.
|
||||||
--drive-trashed-only Only show files that are in the trash
|
--drive-trashed-only Only show files that are in the trash
|
||||||
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
--drive-upload-cutoff int Cutoff for switching to chunked upload (default 8M)
|
||||||
|
--drive-use-created-date Use created date instead of modified date.
|
||||||
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
--drive-use-trash Send files to the trash instead of deleting permanently. (default true)
|
||||||
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
--dropbox-chunk-size int Upload chunk size. Max 150M. (default 48M)
|
||||||
-n, --dry-run Do a trial run with no permanent changes
|
-n, --dry-run Do a trial run with no permanent changes
|
||||||
--dump string List of items to dump from:
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
--dump-headers Dump HTTP headers - may contain sensitive info
|
--dump-headers Dump HTTP bodies - may contain sensitive info
|
||||||
--exclude stringArray Exclude files matching pattern
|
--exclude stringArray Exclude files matching pattern
|
||||||
--exclude-from stringArray Read exclude patterns from file
|
--exclude-from stringArray Read exclude patterns from file
|
||||||
--exclude-if-present string Exclude directories if filename is present
|
--exclude-if-present string Exclude directories if filename is present
|
||||||
@ -101,29 +105,41 @@ rclone version [flags]
|
|||||||
--log-file string Log everything to this file
|
--log-file string Log everything to this file
|
||||||
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
--log-level string Log level DEBUG|INFO|NOTICE|ERROR (default "NOTICE")
|
||||||
--low-level-retries int Number of low level retries to do. (default 10)
|
--low-level-retries int Number of low level retries to do. (default 10)
|
||||||
--max-age string Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y
|
--max-age duration Don't transfer any file older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
|
--max-delete int When synchronizing, limit the number of deletes (default -1)
|
||||||
--max-depth int If set limits the recursion depth to this. (default -1)
|
--max-depth int If set limits the recursion depth to this. (default -1)
|
||||||
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
--max-size int Don't transfer any file larger than this in k or suffix b|k|M|G (default off)
|
||||||
--memprofile string Write memory profile to file
|
--memprofile string Write memory profile to file
|
||||||
--min-age string Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y
|
--min-age duration Don't transfer any file younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
|
||||||
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
--min-size int Don't transfer any file smaller than this in k or suffix b|k|M|G (default off)
|
||||||
--modify-window duration Max time diff to be considered the same (default 1ns)
|
--modify-window duration Max time diff to be considered the same (default 1ns)
|
||||||
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
--no-check-certificate Do not verify the server SSL certificate. Insecure.
|
||||||
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
--no-gzip-encoding Don't set Accept-Encoding: gzip.
|
||||||
--no-traverse Don't traverse destination file system on copy.
|
--no-traverse Obsolete - does nothing.
|
||||||
--no-update-modtime Don't update destination mod-time if files identical.
|
--no-update-modtime Don't update destination mod-time if files identical.
|
||||||
--old-sync-method Deprecated - use --fast-list instead
|
|
||||||
-x, --one-file-system Don't cross filesystem boundaries.
|
-x, --one-file-system Don't cross filesystem boundaries.
|
||||||
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
--onedrive-chunk-size int Above this size files will be chunked - must be multiple of 320k. (default 10M)
|
||||||
--onedrive-upload-cutoff int Cutoff for switching to chunked upload - must be <= 100MB (default 10M)
|
|
||||||
--pcloud-upload-cutoff int Cutoff for switching to multipart upload (default 50M)
|
|
||||||
-q, --quiet Print as little stuff as possible
|
-q, --quiet Print as little stuff as possible
|
||||||
|
--rc Enable the remote control server.
|
||||||
|
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
||||||
|
--rc-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
|
--rc-key string SSL PEM Private key
|
||||||
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-pass string Password for authentication.
|
||||||
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
||||||
|
--rc-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
|
--rc-user string User name for authentication.
|
||||||
--retries int Retry operations this many times if they fail (default 3)
|
--retries int Retry operations this many times if they fail (default 3)
|
||||||
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
--s3-acl string Canned ACL used when creating buckets and/or storing objects in S3
|
||||||
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
--s3-storage-class string Storage class to use when uploading S3 objects (STANDARD|REDUCED_REDUNDANCY|STANDARD_IA)
|
||||||
|
--sftp-ask-password Allow asking for SFTP password when needed.
|
||||||
--size-only Skip based on size only, not mod-time or checksum
|
--size-only Skip based on size only, not mod-time or checksum
|
||||||
--skip-links Don't warn about skipped symlinks.
|
--skip-links Don't warn about skipped symlinks.
|
||||||
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
--stats duration Interval between printing stats, e.g 500ms, 60s, 5m. (0 to disable) (default 1m0s)
|
||||||
|
--stats-file-name-length int Max file name length in stats. 0 for no limit (default 40)
|
||||||
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
--stats-log-level string Log level to show --stats output DEBUG|INFO|NOTICE|ERROR (default "INFO")
|
||||||
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
--stats-unit string Show data rate in stats as either 'bits' or 'bytes'/s (default "bytes")
|
||||||
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
--streaming-upload-cutoff int Cutoff for switching to chunked upload if file size is unknown. Upload starts after reaching cutoff or when file ends. (default 100k)
|
||||||
@ -137,11 +153,12 @@ rclone version [flags]
|
|||||||
--track-renames When synchronizing, track file renames and do a server side move if possible
|
--track-renames When synchronizing, track file renames and do a server side move if possible
|
||||||
--transfers int Number of file transfers to run in parallel. (default 4)
|
--transfers int Number of file transfers to run in parallel. (default 4)
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.39")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.40")
|
||||||
-v, --verbose count[=-1] Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.39
|
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 23-Dec-2017
|
* [rclone](/commands/rclone/) - Sync files and directories to and from local and remote object stores - v1.40
|
||||||
|
|
||||||
|
###### Auto generated by spf13/cobra on 19-Mar-2018
|
||||||
|
@ -43,6 +43,10 @@
|
|||||||
<li><a href="/commands/rclone_lsd/"><i class="fa fa-book"></i> rclone lsd</a></li>
|
<li><a href="/commands/rclone_lsd/"><i class="fa fa-book"></i> rclone lsd</a></li>
|
||||||
<li><a href="/commands/rclone_delete/"><i class="fa fa-book"></i> rclone delete</a></li>
|
<li><a href="/commands/rclone_delete/"><i class="fa fa-book"></i> rclone delete</a></li>
|
||||||
<li><a href="/commands/rclone_size/"><i class="fa fa-book"></i> rclone size</a></li>
|
<li><a href="/commands/rclone_size/"><i class="fa fa-book"></i> rclone size</a></li>
|
||||||
|
<li><a href="/commands/rclone_mount/"><i class="fa fa-book"></i> rclone mount</a></li>
|
||||||
|
<li><a href="/commands/rclone_ncdu/"><i class="fa fa-book"></i> rclone ncdu</a></li>
|
||||||
|
<li><a href="/commands/rclone_cat/"><i class="fa fa-book"></i> rclone cat</a></li>
|
||||||
|
<li><a href="/commands/rclone_rcat/"><i class="fa fa-book"></i> rclone rcat</a></li>
|
||||||
<li><a href="/commands/"><i class="fa fa-book"></i> ...and the rest</a></li>
|
<li><a href="/commands/"><i class="fa fa-book"></i> ...and the rest</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -1 +1 @@
|
|||||||
v1.39
|
v1.40
|
@ -1,4 +1,4 @@
|
|||||||
package fs
|
package fs
|
||||||
|
|
||||||
// Version of rclone
|
// Version of rclone
|
||||||
var Version = "v1.39-DEV"
|
var Version = "v1.40"
|
||||||
|
Reference in New Issue
Block a user