mirror of
https://github.com/rclone/rclone.git
synced 2026-02-28 18:33:35 +00:00
Compare commits
50 Commits
rest-api
...
fix-azure-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
411f75aadf | ||
|
|
a6c28a5faa | ||
|
|
d35bd15762 | ||
|
|
8b8220c4f7 | ||
|
|
5fe3b0ad71 | ||
|
|
4c8c87a935 | ||
|
|
bb10a51b39 | ||
|
|
df01f7a4eb | ||
|
|
e84790ef79 | ||
|
|
369a8ee17b | ||
|
|
84e21ade6b | ||
|
|
703b0535a4 | ||
|
|
155264ae12 | ||
|
|
31e2ce03c3 | ||
|
|
e969505ae4 | ||
|
|
26e2f1a998 | ||
|
|
2682d5a9cf | ||
|
|
2191592e80 | ||
|
|
18f758294e | ||
|
|
f95c1c61dd | ||
|
|
8c8dcdd521 | ||
|
|
141c133818 | ||
|
|
0f03e55cd1 | ||
|
|
9e6ba92a11 | ||
|
|
762561f88e | ||
|
|
084fe38922 | ||
|
|
63a2a935fc | ||
|
|
64fce8438b | ||
|
|
f92beb4e14 | ||
|
|
f7ce2e8d95 | ||
|
|
3975d82b3b | ||
|
|
d87aa33ec5 | ||
|
|
1b78f4d1ea | ||
|
|
b3704597f3 | ||
|
|
16f797a7d7 | ||
|
|
ee700ec01a | ||
|
|
9b3c951ab7 | ||
|
|
22d17e79e3 | ||
|
|
6d3088a00b | ||
|
|
84202c7471 | ||
|
|
96a05516f9 | ||
|
|
4f6a942595 | ||
|
|
c4b0a37b21 | ||
|
|
9322f4baef | ||
|
|
fa0a1e7261 | ||
|
|
4ad08794c9 | ||
|
|
c0f600764b | ||
|
|
f139e07380 | ||
|
|
c6786eeb2d | ||
|
|
57b85b8155 |
633
MANUAL.html
633
MANUAL.html
File diff suppressed because it is too large
Load Diff
823
MANUAL.txt
823
MANUAL.txt
File diff suppressed because it is too large
Load Diff
2
Makefile
2
Makefile
@@ -116,7 +116,7 @@ MANUAL.txt: MANUAL.md
|
|||||||
pandoc -s --from markdown --to plain MANUAL.md -o MANUAL.txt
|
pandoc -s --from markdown --to plain MANUAL.md -o MANUAL.txt
|
||||||
|
|
||||||
commanddocs: rclone
|
commanddocs: rclone
|
||||||
rclone gendocs docs/content/commands/
|
XDG_CACHE_HOME="" XDG_CONFIG_HOME="" HOME="\$$HOME" USER="\$$USER" rclone gendocs docs/content/commands/
|
||||||
|
|
||||||
backenddocs: rclone bin/make_backend_docs.py
|
backenddocs: rclone bin/make_backend_docs.py
|
||||||
./bin/make_backend_docs.py
|
./bin/make_backend_docs.py
|
||||||
|
|||||||
@@ -264,7 +264,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
}
|
}
|
||||||
oAuthClient, ts, err := oauthutil.NewClientWithBaseClient(name, m, acdConfig, baseClient)
|
oAuthClient, ts, err := oauthutil.NewClientWithBaseClient(name, m, acdConfig, baseClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to configure Amazon Drive: %v", err)
|
return nil, errors.Wrap(err, "failed to configure Amazon Drive")
|
||||||
}
|
}
|
||||||
|
|
||||||
c := acd.NewClient(oAuthClient)
|
c := acd.NewClient(oAuthClient)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// Package azureblob provides an interface to the Microsoft Azure blob object storage system
|
// Package azureblob provides an interface to the Microsoft Azure blob object storage system
|
||||||
|
|
||||||
// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8
|
// +build !plan9,!solaris,go1.8
|
||||||
|
|
||||||
package azureblob
|
package azureblob
|
||||||
|
|
||||||
@@ -50,6 +50,7 @@ const (
|
|||||||
defaultUploadCutoff = 256 * fs.MebiByte
|
defaultUploadCutoff = 256 * fs.MebiByte
|
||||||
maxUploadCutoff = 256 * fs.MebiByte
|
maxUploadCutoff = 256 * fs.MebiByte
|
||||||
defaultAccessTier = azblob.AccessTierNone
|
defaultAccessTier = azblob.AccessTierNone
|
||||||
|
maxTryTimeout = time.Hour * 24 * 365 //max time of an azure web request response window (whether or not data is flowing)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Register with Fs
|
// Register with Fs
|
||||||
@@ -322,7 +323,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "failed to make azure storage url from account and endpoint")
|
return nil, errors.Wrap(err, "failed to make azure storage url from account and endpoint")
|
||||||
}
|
}
|
||||||
pipeline := azblob.NewPipeline(credential, azblob.PipelineOptions{})
|
pipeline := azblob.NewPipeline(credential, azblob.PipelineOptions{Retry: azblob.RetryOptions{TryTimeout: maxTryTimeout}})
|
||||||
serviceURL = azblob.NewServiceURL(*u, pipeline)
|
serviceURL = azblob.NewServiceURL(*u, pipeline)
|
||||||
containerURL = serviceURL.NewContainerURL(container)
|
containerURL = serviceURL.NewContainerURL(container)
|
||||||
case opt.SASURL != "":
|
case opt.SASURL != "":
|
||||||
@@ -331,7 +332,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
return nil, errors.Wrapf(err, "failed to parse SAS URL")
|
return nil, errors.Wrapf(err, "failed to parse SAS URL")
|
||||||
}
|
}
|
||||||
// use anonymous credentials in case of sas url
|
// use anonymous credentials in case of sas url
|
||||||
pipeline := azblob.NewPipeline(azblob.NewAnonymousCredential(), azblob.PipelineOptions{})
|
pipeline := azblob.NewPipeline(azblob.NewAnonymousCredential(), azblob.PipelineOptions{Retry: azblob.RetryOptions{TryTimeout: maxTryTimeout}})
|
||||||
// Check if we have container level SAS or account level sas
|
// Check if we have container level SAS or account level sas
|
||||||
parts := azblob.NewBlobURLParts(*u)
|
parts := azblob.NewBlobURLParts(*u)
|
||||||
if parts.ContainerName != "" {
|
if parts.ContainerName != "" {
|
||||||
@@ -705,6 +706,11 @@ func (f *Fs) Mkdir(dir string) error {
|
|||||||
f.containerOK = true
|
f.containerOK = true
|
||||||
return false, nil
|
return false, nil
|
||||||
case azblob.ServiceCodeContainerBeingDeleted:
|
case azblob.ServiceCodeContainerBeingDeleted:
|
||||||
|
// From https://docs.microsoft.com/en-us/rest/api/storageservices/delete-container
|
||||||
|
// When a container is deleted, a container with the same name cannot be created
|
||||||
|
// for at least 30 seconds; the container may not be available for more than 30
|
||||||
|
// seconds if the service is still processing the request.
|
||||||
|
time.Sleep(6 * time.Second) // default 10 retries will be 60 seconds
|
||||||
f.containerDeleted = true
|
f.containerDeleted = true
|
||||||
return true, err
|
return true, err
|
||||||
}
|
}
|
||||||
@@ -722,7 +728,7 @@ func (f *Fs) Mkdir(dir string) error {
|
|||||||
// isEmpty checks to see if a given directory is empty and returns an error if not
|
// isEmpty checks to see if a given directory is empty and returns an error if not
|
||||||
func (f *Fs) isEmpty(dir string) (err error) {
|
func (f *Fs) isEmpty(dir string) (err error) {
|
||||||
empty := true
|
empty := true
|
||||||
err = f.list("", true, 1, func(remote string, object *azblob.BlobItem, isDirectory bool) error {
|
err = f.list(dir, true, 1, func(remote string, object *azblob.BlobItem, isDirectory bool) error {
|
||||||
empty = false
|
empty = false
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8
|
// +build !plan9,!solaris,go1.8
|
||||||
|
|
||||||
package azureblob
|
package azureblob
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// Test AzureBlob filesystem interface
|
// Test AzureBlob filesystem interface
|
||||||
|
|
||||||
// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8
|
// +build !plan9,!solaris,go1.8
|
||||||
|
|
||||||
package azureblob
|
package azureblob
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// Build for azureblob for unsupported platforms to stop go complaining
|
// Build for azureblob for unsupported platforms to stop go complaining
|
||||||
// about "no buildable Go source files "
|
// about "no buildable Go source files "
|
||||||
|
|
||||||
// +build freebsd netbsd openbsd plan9 solaris !go1.8
|
// +build plan9 solaris !go1.8
|
||||||
|
|
||||||
package azureblob
|
package azureblob
|
||||||
|
|||||||
@@ -252,7 +252,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
root = parsePath(root)
|
root = parsePath(root)
|
||||||
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to configure Box: %v", err)
|
return nil, errors.Wrap(err, "failed to configure Box")
|
||||||
}
|
}
|
||||||
|
|
||||||
f := &Fs{
|
f := &Fs{
|
||||||
|
|||||||
@@ -243,10 +243,19 @@ func (f *Fs) InternalTestDocumentLink(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (f *Fs) InternalTest(t *testing.T) {
|
func (f *Fs) InternalTest(t *testing.T) {
|
||||||
t.Run("DocumentImport", f.InternalTestDocumentImport)
|
// These tests all depend on each other so run them as nested tests
|
||||||
t.Run("DocumentUpdate", f.InternalTestDocumentUpdate)
|
t.Run("DocumentImport", func(t *testing.T) {
|
||||||
t.Run("DocumentExport", f.InternalTestDocumentExport)
|
f.InternalTestDocumentImport(t)
|
||||||
t.Run("DocumentLink", f.InternalTestDocumentLink)
|
t.Run("DocumentUpdate", func(t *testing.T) {
|
||||||
|
f.InternalTestDocumentUpdate(t)
|
||||||
|
t.Run("DocumentExport", func(t *testing.T) {
|
||||||
|
f.InternalTestDocumentExport(t)
|
||||||
|
t.Run("DocumentLink", func(t *testing.T) {
|
||||||
|
f.InternalTestDocumentLink(t)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ fstests.InternalTester = (*Fs)(nil)
|
var _ fstests.InternalTester = (*Fs)(nil)
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ import (
|
|||||||
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/common"
|
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/common"
|
||||||
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/files"
|
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/files"
|
||||||
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/sharing"
|
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/sharing"
|
||||||
|
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/team"
|
||||||
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/users"
|
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/users"
|
||||||
"github.com/ncw/rclone/fs"
|
"github.com/ncw/rclone/fs"
|
||||||
"github.com/ncw/rclone/fs/config"
|
"github.com/ncw/rclone/fs/config"
|
||||||
@@ -131,13 +132,19 @@ slightly (at most 10%% for 128MB in tests) at the cost of using more
|
|||||||
memory. It can be set smaller if you are tight on memory.`, fs.SizeSuffix(maxChunkSize)),
|
memory. It can be set smaller if you are tight on memory.`, fs.SizeSuffix(maxChunkSize)),
|
||||||
Default: fs.SizeSuffix(defaultChunkSize),
|
Default: fs.SizeSuffix(defaultChunkSize),
|
||||||
Advanced: true,
|
Advanced: true,
|
||||||
|
}, {
|
||||||
|
Name: "impersonate",
|
||||||
|
Help: "Impersonate this user when using a business account.",
|
||||||
|
Default: "",
|
||||||
|
Advanced: true,
|
||||||
}},
|
}},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Options defines the configuration for this backend
|
// Options defines the configuration for this backend
|
||||||
type Options struct {
|
type Options struct {
|
||||||
ChunkSize fs.SizeSuffix `config:"chunk_size"`
|
ChunkSize fs.SizeSuffix `config:"chunk_size"`
|
||||||
|
Impersonate string `config:"impersonate"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fs represents a remote dropbox server
|
// Fs represents a remote dropbox server
|
||||||
@@ -149,6 +156,7 @@ type Fs struct {
|
|||||||
srv files.Client // the connection to the dropbox server
|
srv files.Client // the connection to the dropbox server
|
||||||
sharing sharing.Client // as above, but for generating sharing links
|
sharing sharing.Client // as above, but for generating sharing links
|
||||||
users users.Client // as above, but for accessing user information
|
users users.Client // as above, but for accessing user information
|
||||||
|
team team.Client // for the Teams API
|
||||||
slashRoot string // root with "/" prefix, lowercase
|
slashRoot string // root with "/" prefix, lowercase
|
||||||
slashRootSlash string // root with "/" prefix and postfix, lowercase
|
slashRootSlash string // root with "/" prefix and postfix, lowercase
|
||||||
pacer *pacer.Pacer // To pace the API calls
|
pacer *pacer.Pacer // To pace the API calls
|
||||||
@@ -262,6 +270,29 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
Client: oAuthClient, // maybe???
|
Client: oAuthClient, // maybe???
|
||||||
HeaderGenerator: f.headerGenerator,
|
HeaderGenerator: f.headerGenerator,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NOTE: needs to be created pre-impersonation so we can look up the impersonated user
|
||||||
|
f.team = team.New(config)
|
||||||
|
|
||||||
|
if opt.Impersonate != "" {
|
||||||
|
|
||||||
|
user := team.UserSelectorArg{
|
||||||
|
Email: opt.Impersonate,
|
||||||
|
}
|
||||||
|
user.Tag = "email"
|
||||||
|
|
||||||
|
members := []*team.UserSelectorArg{&user}
|
||||||
|
args := team.NewMembersGetInfoArgs(members)
|
||||||
|
|
||||||
|
memberIds, err := f.team.MembersGetInfo(args)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "invalid dropbox team member: %q", opt.Impersonate)
|
||||||
|
}
|
||||||
|
|
||||||
|
config.AsMemberID = memberIds[0].MemberInfo.Profile.MemberProfile.TeamMemberId
|
||||||
|
}
|
||||||
|
|
||||||
f.srv = files.New(config)
|
f.srv = files.New(config)
|
||||||
f.sharing = sharing.New(config)
|
f.sharing = sharing.New(config)
|
||||||
f.users = users.New(config)
|
f.users = users.New(config)
|
||||||
|
|||||||
@@ -404,13 +404,13 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if opt.DriveID == "" || opt.DriveType == "" {
|
if opt.DriveID == "" || opt.DriveType == "" {
|
||||||
log.Fatalf("Unable to get drive_id and drive_type. If you are upgrading from older versions of rclone, please run `rclone config` and re-configure this backend.")
|
return nil, errors.New("unable to get drive_id and drive_type - if you are upgrading from older versions of rclone, please run `rclone config` and re-configure this backend")
|
||||||
}
|
}
|
||||||
|
|
||||||
root = parsePath(root)
|
root = parsePath(root)
|
||||||
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to configure OneDrive: %v", err)
|
return nil, errors.Wrap(err, "failed to configure OneDrive")
|
||||||
}
|
}
|
||||||
|
|
||||||
f := &Fs{
|
f := &Fs{
|
||||||
|
|||||||
@@ -246,7 +246,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
root = parsePath(root)
|
root = parsePath(root)
|
||||||
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
oAuthClient, ts, err := oauthutil.NewClient(name, m, oauthConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to configure Pcloud: %v", err)
|
return nil, errors.Wrap(err, "failed to configure Pcloud")
|
||||||
}
|
}
|
||||||
|
|
||||||
f := &Fs{
|
f := &Fs{
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ func init() {
|
|||||||
}},
|
}},
|
||||||
}, {
|
}, {
|
||||||
Name: "connection_retries",
|
Name: "connection_retries",
|
||||||
Help: "Number of connnection retries.",
|
Help: "Number of connection retries.",
|
||||||
Default: 3,
|
Default: 3,
|
||||||
Advanced: true,
|
Advanced: true,
|
||||||
}},
|
}},
|
||||||
|
|||||||
@@ -291,7 +291,11 @@ func init() {
|
|||||||
Provider: "DigitalOcean",
|
Provider: "DigitalOcean",
|
||||||
}, {
|
}, {
|
||||||
Value: "s3.wasabisys.com",
|
Value: "s3.wasabisys.com",
|
||||||
Help: "Wasabi Object Storage",
|
Help: "Wasabi US East endpoint",
|
||||||
|
Provider: "Wasabi",
|
||||||
|
}, {
|
||||||
|
Value: "s3.us-west-1.wasabisys.com",
|
||||||
|
Help: "Wasabi US West endpoint",
|
||||||
Provider: "Wasabi",
|
Provider: "Wasabi",
|
||||||
}},
|
}},
|
||||||
}, {
|
}, {
|
||||||
@@ -804,8 +808,21 @@ func s3Connection(opt *Options) (*s3.S3, *session.Session, error) {
|
|||||||
WithHTTPClient(fshttp.NewClient(fs.Config)).
|
WithHTTPClient(fshttp.NewClient(fs.Config)).
|
||||||
WithS3ForcePathStyle(opt.ForcePathStyle)
|
WithS3ForcePathStyle(opt.ForcePathStyle)
|
||||||
// awsConfig.WithLogLevel(aws.LogDebugWithSigning)
|
// awsConfig.WithLogLevel(aws.LogDebugWithSigning)
|
||||||
ses := session.New()
|
awsSessionOpts := session.Options{
|
||||||
c := s3.New(ses, awsConfig)
|
Config: *awsConfig,
|
||||||
|
}
|
||||||
|
if opt.EnvAuth && opt.AccessKeyID == "" && opt.SecretAccessKey == "" {
|
||||||
|
// Enable loading config options from ~/.aws/config (selected by AWS_PROFILE env)
|
||||||
|
awsSessionOpts.SharedConfigState = session.SharedConfigEnable
|
||||||
|
// The session constructor (aws/session/mergeConfigSrcs) will only use the user's preferred credential source
|
||||||
|
// (from the shared config file) if the passed-in Options.Config.Credentials is nil.
|
||||||
|
awsSessionOpts.Config.Credentials = nil
|
||||||
|
}
|
||||||
|
ses, err := session.NewSessionWithOptions(awsSessionOpts)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
c := s3.New(ses)
|
||||||
if opt.V2Auth || opt.Region == "other-v2-signature" {
|
if opt.V2Auth || opt.Region == "other-v2-signature" {
|
||||||
fs.Debugf(nil, "Using v2 auth")
|
fs.Debugf(nil, "Using v2 auth")
|
||||||
signer := func(req *request.Request) {
|
signer := func(req *request.Request) {
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import (
|
|||||||
"github.com/ncw/rclone/fs/hash"
|
"github.com/ncw/rclone/fs/hash"
|
||||||
"github.com/ncw/rclone/fs/operations"
|
"github.com/ncw/rclone/fs/operations"
|
||||||
"github.com/ncw/rclone/fs/walk"
|
"github.com/ncw/rclone/fs/walk"
|
||||||
|
"github.com/ncw/rclone/lib/pacer"
|
||||||
"github.com/ncw/swift"
|
"github.com/ncw/swift"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
@@ -30,6 +31,7 @@ const (
|
|||||||
directoryMarkerContentType = "application/directory" // content type of directory marker objects
|
directoryMarkerContentType = "application/directory" // content type of directory marker objects
|
||||||
listChunks = 1000 // chunk size to read directory listings
|
listChunks = 1000 // chunk size to read directory listings
|
||||||
defaultChunkSize = 5 * fs.GibiByte
|
defaultChunkSize = 5 * fs.GibiByte
|
||||||
|
minSleep = 10 * time.Millisecond // In case of error, start at 10ms sleep.
|
||||||
)
|
)
|
||||||
|
|
||||||
// SharedOptions are shared between swift and hubic
|
// SharedOptions are shared between swift and hubic
|
||||||
@@ -187,6 +189,7 @@ type Fs struct {
|
|||||||
containerOK bool // true if we have created the container
|
containerOK bool // true if we have created the container
|
||||||
segmentsContainer string // container to store the segments (if any) in
|
segmentsContainer string // container to store the segments (if any) in
|
||||||
noCheckContainer bool // don't check the container before creating it
|
noCheckContainer bool // don't check the container before creating it
|
||||||
|
pacer *pacer.Pacer // To pace the API calls
|
||||||
}
|
}
|
||||||
|
|
||||||
// Object describes a swift object
|
// Object describes a swift object
|
||||||
@@ -227,6 +230,32 @@ func (f *Fs) Features() *fs.Features {
|
|||||||
return f.features
|
return f.features
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// retryErrorCodes is a slice of error codes that we will retry
|
||||||
|
var retryErrorCodes = []int{
|
||||||
|
401, // Unauthorized (eg "Token has expired")
|
||||||
|
408, // Request Timeout
|
||||||
|
409, // Conflict - various states that could be resolved on a retry
|
||||||
|
429, // Rate exceeded.
|
||||||
|
500, // Get occasional 500 Internal Server Error
|
||||||
|
503, // Service Unavailable/Slow Down - "Reduce your request rate"
|
||||||
|
504, // Gateway Time-out
|
||||||
|
}
|
||||||
|
|
||||||
|
// shouldRetry returns a boolean as to whether this err deserves to be
|
||||||
|
// retried. It returns the err as a convenience
|
||||||
|
func shouldRetry(err error) (bool, error) {
|
||||||
|
// If this is an swift.Error object extract the HTTP error code
|
||||||
|
if swiftError, ok := err.(*swift.Error); ok {
|
||||||
|
for _, e := range retryErrorCodes {
|
||||||
|
if swiftError.StatusCode == e {
|
||||||
|
return true, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Check for generic failure conditions
|
||||||
|
return fserrors.ShouldRetry(err), err
|
||||||
|
}
|
||||||
|
|
||||||
// Pattern to match a swift path
|
// Pattern to match a swift path
|
||||||
var matcher = regexp.MustCompile(`^/*([^/]*)(.*)$`)
|
var matcher = regexp.MustCompile(`^/*([^/]*)(.*)$`)
|
||||||
|
|
||||||
@@ -337,6 +366,7 @@ func NewFsWithConnection(opt *Options, name, root string, c *swift.Connection, n
|
|||||||
segmentsContainer: container + "_segments",
|
segmentsContainer: container + "_segments",
|
||||||
root: directory,
|
root: directory,
|
||||||
noCheckContainer: noCheckContainer,
|
noCheckContainer: noCheckContainer,
|
||||||
|
pacer: pacer.New().SetMinSleep(minSleep).SetPacer(pacer.S3Pacer),
|
||||||
}
|
}
|
||||||
f.features = (&fs.Features{
|
f.features = (&fs.Features{
|
||||||
ReadMimeType: true,
|
ReadMimeType: true,
|
||||||
@@ -346,7 +376,11 @@ func NewFsWithConnection(opt *Options, name, root string, c *swift.Connection, n
|
|||||||
if f.root != "" {
|
if f.root != "" {
|
||||||
f.root += "/"
|
f.root += "/"
|
||||||
// Check to see if the object exists - ignoring directory markers
|
// Check to see if the object exists - ignoring directory markers
|
||||||
info, _, err := f.c.Object(container, directory)
|
var info swift.Object
|
||||||
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
info, _, err = f.c.Object(container, directory)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err == nil && info.ContentType != directoryMarkerContentType {
|
if err == nil && info.ContentType != directoryMarkerContentType {
|
||||||
f.root = path.Dir(directory)
|
f.root = path.Dir(directory)
|
||||||
if f.root == "." {
|
if f.root == "." {
|
||||||
@@ -436,7 +470,12 @@ func (f *Fs) listContainerRoot(container, root string, dir string, recurse bool,
|
|||||||
}
|
}
|
||||||
rootLength := len(root)
|
rootLength := len(root)
|
||||||
return f.c.ObjectsWalk(container, &opts, func(opts *swift.ObjectsOpts) (interface{}, error) {
|
return f.c.ObjectsWalk(container, &opts, func(opts *swift.ObjectsOpts) (interface{}, error) {
|
||||||
objects, err := f.c.Objects(container, opts)
|
var objects []swift.Object
|
||||||
|
var err error
|
||||||
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
objects, err = f.c.Objects(container, opts)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err == nil {
|
if err == nil {
|
||||||
for i := range objects {
|
for i := range objects {
|
||||||
object := &objects[i]
|
object := &objects[i]
|
||||||
@@ -525,7 +564,11 @@ func (f *Fs) listContainers(dir string) (entries fs.DirEntries, err error) {
|
|||||||
if dir != "" {
|
if dir != "" {
|
||||||
return nil, fs.ErrorListBucketRequired
|
return nil, fs.ErrorListBucketRequired
|
||||||
}
|
}
|
||||||
containers, err := f.c.ContainersAll(nil)
|
var containers []swift.Container
|
||||||
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
containers, err = f.c.ContainersAll(nil)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "container listing failed")
|
return nil, errors.Wrap(err, "container listing failed")
|
||||||
}
|
}
|
||||||
@@ -586,7 +629,12 @@ func (f *Fs) ListR(dir string, callback fs.ListRCallback) (err error) {
|
|||||||
|
|
||||||
// About gets quota information
|
// About gets quota information
|
||||||
func (f *Fs) About() (*fs.Usage, error) {
|
func (f *Fs) About() (*fs.Usage, error) {
|
||||||
containers, err := f.c.ContainersAll(nil)
|
var containers []swift.Container
|
||||||
|
var err error
|
||||||
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
containers, err = f.c.ContainersAll(nil)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "container listing failed")
|
return nil, errors.Wrap(err, "container listing failed")
|
||||||
}
|
}
|
||||||
@@ -636,14 +684,20 @@ func (f *Fs) Mkdir(dir string) error {
|
|||||||
// Check to see if container exists first
|
// Check to see if container exists first
|
||||||
var err error = swift.ContainerNotFound
|
var err error = swift.ContainerNotFound
|
||||||
if !f.noCheckContainer {
|
if !f.noCheckContainer {
|
||||||
_, _, err = f.c.Container(f.container)
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
_, _, err = f.c.Container(f.container)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if err == swift.ContainerNotFound {
|
if err == swift.ContainerNotFound {
|
||||||
headers := swift.Headers{}
|
headers := swift.Headers{}
|
||||||
if f.opt.StoragePolicy != "" {
|
if f.opt.StoragePolicy != "" {
|
||||||
headers["X-Storage-Policy"] = f.opt.StoragePolicy
|
headers["X-Storage-Policy"] = f.opt.StoragePolicy
|
||||||
}
|
}
|
||||||
err = f.c.ContainerCreate(f.container, headers)
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
err = f.c.ContainerCreate(f.container, headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
f.containerOK = true
|
f.containerOK = true
|
||||||
@@ -660,7 +714,11 @@ func (f *Fs) Rmdir(dir string) error {
|
|||||||
if f.root != "" || dir != "" {
|
if f.root != "" || dir != "" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
err := f.c.ContainerDelete(f.container)
|
var err error
|
||||||
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
err = f.c.ContainerDelete(f.container)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err == nil {
|
if err == nil {
|
||||||
f.containerOK = false
|
f.containerOK = false
|
||||||
}
|
}
|
||||||
@@ -719,7 +777,10 @@ func (f *Fs) Copy(src fs.Object, remote string) (fs.Object, error) {
|
|||||||
return nil, fs.ErrorCantCopy
|
return nil, fs.ErrorCantCopy
|
||||||
}
|
}
|
||||||
srcFs := srcObj.fs
|
srcFs := srcObj.fs
|
||||||
_, err = f.c.ObjectCopy(srcFs.container, srcFs.root+srcObj.remote, f.container, f.root+remote, nil)
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
|
_, err = f.c.ObjectCopy(srcFs.container, srcFs.root+srcObj.remote, f.container, f.root+remote, nil)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -809,7 +870,12 @@ func (o *Object) readMetaData() (err error) {
|
|||||||
if o.headers != nil {
|
if o.headers != nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
info, h, err := o.fs.c.Object(o.fs.container, o.fs.root+o.remote)
|
var info swift.Object
|
||||||
|
var h swift.Headers
|
||||||
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
info, h, err = o.fs.c.Object(o.fs.container, o.fs.root+o.remote)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == swift.ObjectNotFound {
|
if err == swift.ObjectNotFound {
|
||||||
return fs.ErrorObjectNotFound
|
return fs.ErrorObjectNotFound
|
||||||
@@ -861,7 +927,10 @@ func (o *Object) SetModTime(modTime time.Time) error {
|
|||||||
newHeaders[k] = v
|
newHeaders[k] = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return o.fs.c.ObjectUpdate(o.fs.container, o.fs.root+o.remote, newHeaders)
|
return o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
err = o.fs.c.ObjectUpdate(o.fs.container, o.fs.root+o.remote, newHeaders)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Storable returns if this object is storable
|
// Storable returns if this object is storable
|
||||||
@@ -876,7 +945,10 @@ func (o *Object) Storable() bool {
|
|||||||
func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) {
|
func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) {
|
||||||
headers := fs.OpenOptionHeaders(options)
|
headers := fs.OpenOptionHeaders(options)
|
||||||
_, isRanging := headers["Range"]
|
_, isRanging := headers["Range"]
|
||||||
in, _, err = o.fs.c.ObjectOpen(o.fs.container, o.fs.root+o.remote, !isRanging, headers)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
in, _, err = o.fs.c.ObjectOpen(o.fs.container, o.fs.root+o.remote, !isRanging, headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -903,13 +975,20 @@ func (o *Object) removeSegments(except string) error {
|
|||||||
}
|
}
|
||||||
segmentPath := segmentsRoot + remote
|
segmentPath := segmentsRoot + remote
|
||||||
fs.Debugf(o, "Removing segment file %q in container %q", segmentPath, o.fs.segmentsContainer)
|
fs.Debugf(o, "Removing segment file %q in container %q", segmentPath, o.fs.segmentsContainer)
|
||||||
return o.fs.c.ObjectDelete(o.fs.segmentsContainer, segmentPath)
|
var err error
|
||||||
|
return o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
err = o.fs.c.ObjectDelete(o.fs.segmentsContainer, segmentPath)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// remove the segments container if empty, ignore errors
|
// remove the segments container if empty, ignore errors
|
||||||
err = o.fs.c.ContainerDelete(o.fs.segmentsContainer)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
err = o.fs.c.ContainerDelete(o.fs.segmentsContainer)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err == nil {
|
if err == nil {
|
||||||
fs.Debugf(o, "Removed empty container %q", o.fs.segmentsContainer)
|
fs.Debugf(o, "Removed empty container %q", o.fs.segmentsContainer)
|
||||||
}
|
}
|
||||||
@@ -938,13 +1017,19 @@ func urlEncode(str string) string {
|
|||||||
func (o *Object) updateChunks(in0 io.Reader, headers swift.Headers, size int64, contentType string) (string, error) {
|
func (o *Object) updateChunks(in0 io.Reader, headers swift.Headers, size int64, contentType string) (string, error) {
|
||||||
// Create the segmentsContainer if it doesn't exist
|
// Create the segmentsContainer if it doesn't exist
|
||||||
var err error
|
var err error
|
||||||
_, _, err = o.fs.c.Container(o.fs.segmentsContainer)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
_, _, err = o.fs.c.Container(o.fs.segmentsContainer)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err == swift.ContainerNotFound {
|
if err == swift.ContainerNotFound {
|
||||||
headers := swift.Headers{}
|
headers := swift.Headers{}
|
||||||
if o.fs.opt.StoragePolicy != "" {
|
if o.fs.opt.StoragePolicy != "" {
|
||||||
headers["X-Storage-Policy"] = o.fs.opt.StoragePolicy
|
headers["X-Storage-Policy"] = o.fs.opt.StoragePolicy
|
||||||
}
|
}
|
||||||
err = o.fs.c.ContainerCreate(o.fs.segmentsContainer, headers)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
err = o.fs.c.ContainerCreate(o.fs.segmentsContainer, headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
@@ -973,7 +1058,10 @@ func (o *Object) updateChunks(in0 io.Reader, headers swift.Headers, size int64,
|
|||||||
segmentReader := io.LimitReader(in, n)
|
segmentReader := io.LimitReader(in, n)
|
||||||
segmentPath := fmt.Sprintf("%s/%08d", segmentsPath, i)
|
segmentPath := fmt.Sprintf("%s/%08d", segmentsPath, i)
|
||||||
fs.Debugf(o, "Uploading segment file %q into %q", segmentPath, o.fs.segmentsContainer)
|
fs.Debugf(o, "Uploading segment file %q into %q", segmentPath, o.fs.segmentsContainer)
|
||||||
_, err := o.fs.c.ObjectPut(o.fs.segmentsContainer, segmentPath, segmentReader, true, "", "", headers)
|
err = o.fs.pacer.CallNoRetry(func() (bool, error) {
|
||||||
|
_, err = o.fs.c.ObjectPut(o.fs.segmentsContainer, segmentPath, segmentReader, true, "", "", headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
@@ -984,7 +1072,10 @@ func (o *Object) updateChunks(in0 io.Reader, headers swift.Headers, size int64,
|
|||||||
headers["Content-Length"] = "0" // set Content-Length as we know it
|
headers["Content-Length"] = "0" // set Content-Length as we know it
|
||||||
emptyReader := bytes.NewReader(nil)
|
emptyReader := bytes.NewReader(nil)
|
||||||
manifestName := o.fs.root + o.remote
|
manifestName := o.fs.root + o.remote
|
||||||
_, err = o.fs.c.ObjectPut(o.fs.container, manifestName, emptyReader, true, "", contentType, headers)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
_, err = o.fs.c.ObjectPut(o.fs.container, manifestName, emptyReader, true, "", contentType, headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
return uniquePrefix + "/", err
|
return uniquePrefix + "/", err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1021,7 +1112,10 @@ func (o *Object) Update(in io.Reader, src fs.ObjectInfo, options ...fs.OpenOptio
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
headers["Content-Length"] = strconv.FormatInt(size, 10) // set Content-Length as we know it
|
headers["Content-Length"] = strconv.FormatInt(size, 10) // set Content-Length as we know it
|
||||||
_, err := o.fs.c.ObjectPut(o.fs.container, o.fs.root+o.remote, in, true, "", contentType, headers)
|
err = o.fs.pacer.CallNoRetry(func() (bool, error) {
|
||||||
|
_, err = o.fs.c.ObjectPut(o.fs.container, o.fs.root+o.remote, in, true, "", contentType, headers)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -1047,7 +1141,10 @@ func (o *Object) Remove() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// Remove file/manifest first
|
// Remove file/manifest first
|
||||||
err = o.fs.c.ObjectDelete(o.fs.container, o.fs.root+o.remote)
|
err = o.fs.pacer.Call(func() (bool, error) {
|
||||||
|
err = o.fs.c.ObjectDelete(o.fs.container, o.fs.root+o.remote)
|
||||||
|
return shouldRetry(err)
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import (
|
|||||||
"github.com/ncw/rclone/backend/webdav/api"
|
"github.com/ncw/rclone/backend/webdav/api"
|
||||||
"github.com/ncw/rclone/backend/webdav/odrvcookie"
|
"github.com/ncw/rclone/backend/webdav/odrvcookie"
|
||||||
"github.com/ncw/rclone/fs"
|
"github.com/ncw/rclone/fs"
|
||||||
"github.com/ncw/rclone/fs/config"
|
|
||||||
"github.com/ncw/rclone/fs/config/configmap"
|
"github.com/ncw/rclone/fs/config/configmap"
|
||||||
"github.com/ncw/rclone/fs/config/configstruct"
|
"github.com/ncw/rclone/fs/config/configstruct"
|
||||||
"github.com/ncw/rclone/fs/config/obscure"
|
"github.com/ncw/rclone/fs/config/obscure"
|
||||||
@@ -96,10 +95,11 @@ func init() {
|
|||||||
|
|
||||||
// Options defines the configuration for this backend
|
// Options defines the configuration for this backend
|
||||||
type Options struct {
|
type Options struct {
|
||||||
URL string `config:"url"`
|
URL string `config:"url"`
|
||||||
Vendor string `config:"vendor"`
|
Vendor string `config:"vendor"`
|
||||||
User string `config:"user"`
|
User string `config:"user"`
|
||||||
Pass string `config:"pass"`
|
Pass string `config:"pass"`
|
||||||
|
BearerToken string `config:"bearer_token"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fs represents a remote webdav
|
// Fs represents a remote webdav
|
||||||
@@ -283,9 +283,6 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
rootIsDir := strings.HasSuffix(root, "/")
|
rootIsDir := strings.HasSuffix(root, "/")
|
||||||
root = strings.Trim(root, "/")
|
root = strings.Trim(root, "/")
|
||||||
|
|
||||||
user := config.FileGet(name, "user")
|
|
||||||
pass := config.FileGet(name, "pass")
|
|
||||||
bearerToken := config.FileGet(name, "bearer_token")
|
|
||||||
if !strings.HasSuffix(opt.URL, "/") {
|
if !strings.HasSuffix(opt.URL, "/") {
|
||||||
opt.URL += "/"
|
opt.URL += "/"
|
||||||
}
|
}
|
||||||
@@ -320,10 +317,10 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
|
|||||||
f.features = (&fs.Features{
|
f.features = (&fs.Features{
|
||||||
CanHaveEmptyDirectories: true,
|
CanHaveEmptyDirectories: true,
|
||||||
}).Fill(f)
|
}).Fill(f)
|
||||||
if user != "" || pass != "" {
|
if opt.User != "" || opt.Pass != "" {
|
||||||
f.srv.SetUserPass(opt.User, opt.Pass)
|
f.srv.SetUserPass(opt.User, opt.Pass)
|
||||||
} else if bearerToken != "" {
|
} else if opt.BearerToken != "" {
|
||||||
f.srv.SetHeader("Authorization", "BEARER "+bearerToken)
|
f.srv.SetHeader("Authorization", "BEARER "+opt.BearerToken)
|
||||||
}
|
}
|
||||||
f.srv.SetErrorHandler(errorHandler)
|
f.srv.SetErrorHandler(errorHandler)
|
||||||
err = f.setQuirks(opt.Vendor)
|
err = f.setQuirks(opt.Vendor)
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
//from yadisk
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
)
|
|
||||||
|
|
||||||
//RootAddr is the base URL for Yandex Disk API.
|
|
||||||
const RootAddr = "https://cloud-api.yandex.com" //also https://cloud-api.yandex.net and https://cloud-api.yandex.ru
|
|
||||||
|
|
||||||
func (c *Client) setRequestScope(req *http.Request) {
|
|
||||||
req.Header.Add("Accept", "application/json")
|
|
||||||
req.Header.Add("Content-Type", "application/json")
|
|
||||||
req.Header.Add("Authorization", "OAuth "+c.token)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Client) scopedRequest(method, urlPath string, body io.Reader) (*http.Request, error) {
|
|
||||||
fullURL := RootAddr
|
|
||||||
if urlPath[:1] != "/" {
|
|
||||||
fullURL += "/" + urlPath
|
|
||||||
} else {
|
|
||||||
fullURL += urlPath
|
|
||||||
}
|
|
||||||
|
|
||||||
req, err := http.NewRequest(method, fullURL, body)
|
|
||||||
if err != nil {
|
|
||||||
return req, err
|
|
||||||
}
|
|
||||||
|
|
||||||
c.setRequestScope(req)
|
|
||||||
return req, nil
|
|
||||||
}
|
|
||||||
@@ -1,133 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
"net/url"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
//Client struct
|
|
||||||
type Client struct {
|
|
||||||
token string
|
|
||||||
basePath string
|
|
||||||
HTTPClient *http.Client
|
|
||||||
}
|
|
||||||
|
|
||||||
//NewClient creates new client
|
|
||||||
func NewClient(token string, client ...*http.Client) *Client {
|
|
||||||
return newClientInternal(
|
|
||||||
token,
|
|
||||||
"https://cloud-api.yandex.com/v1/disk", //also "https://cloud-api.yandex.net/v1/disk" "https://cloud-api.yandex.ru/v1/disk"
|
|
||||||
client...)
|
|
||||||
}
|
|
||||||
|
|
||||||
func newClientInternal(token string, basePath string, client ...*http.Client) *Client {
|
|
||||||
c := &Client{
|
|
||||||
token: token,
|
|
||||||
basePath: basePath,
|
|
||||||
}
|
|
||||||
if len(client) != 0 {
|
|
||||||
c.HTTPClient = client[0]
|
|
||||||
} else {
|
|
||||||
c.HTTPClient = http.DefaultClient
|
|
||||||
}
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
//ErrorHandler type
|
|
||||||
type ErrorHandler func(*http.Response) error
|
|
||||||
|
|
||||||
var defaultErrorHandler ErrorHandler = func(resp *http.Response) error {
|
|
||||||
if resp.StatusCode/100 == 5 {
|
|
||||||
return errors.New("server error")
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.StatusCode/100 == 4 {
|
|
||||||
var response DiskClientError
|
|
||||||
contents, _ := ioutil.ReadAll(resp.Body)
|
|
||||||
err := json.Unmarshal(contents, &response)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return response
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.StatusCode/100 == 3 {
|
|
||||||
return errors.New("redirect error")
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (HTTPRequest *HTTPRequest) run(client *Client) ([]byte, error) {
|
|
||||||
var err error
|
|
||||||
values := make(url.Values)
|
|
||||||
for k, v := range HTTPRequest.Parameters {
|
|
||||||
values.Set(k, fmt.Sprintf("%v", v))
|
|
||||||
}
|
|
||||||
|
|
||||||
var req *http.Request
|
|
||||||
if HTTPRequest.Method == "POST" {
|
|
||||||
// TODO json serialize
|
|
||||||
req, err = http.NewRequest(
|
|
||||||
"POST",
|
|
||||||
client.basePath+HTTPRequest.Path,
|
|
||||||
strings.NewReader(values.Encode()))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// TODO
|
|
||||||
// req.Header.Set("Content-Type", "application/json")
|
|
||||||
} else {
|
|
||||||
req, err = http.NewRequest(
|
|
||||||
HTTPRequest.Method,
|
|
||||||
client.basePath+HTTPRequest.Path+"?"+values.Encode(),
|
|
||||||
nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for headerName := range HTTPRequest.Headers {
|
|
||||||
var headerValues = HTTPRequest.Headers[headerName]
|
|
||||||
for _, headerValue := range headerValues {
|
|
||||||
req.Header.Set(headerName, headerValue)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return runRequest(client, req)
|
|
||||||
}
|
|
||||||
|
|
||||||
func runRequest(client *Client, req *http.Request) ([]byte, error) {
|
|
||||||
return runRequestWithErrorHandler(client, req, defaultErrorHandler)
|
|
||||||
}
|
|
||||||
|
|
||||||
func runRequestWithErrorHandler(client *Client, req *http.Request, errorHandler ErrorHandler) (out []byte, err error) {
|
|
||||||
resp, err := client.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
return checkResponseForErrorsWithErrorHandler(resp, errorHandler)
|
|
||||||
}
|
|
||||||
|
|
||||||
func checkResponseForErrorsWithErrorHandler(resp *http.Response, errorHandler ErrorHandler) ([]byte, error) {
|
|
||||||
if resp.StatusCode/100 > 2 {
|
|
||||||
return nil, errorHandler(resp)
|
|
||||||
}
|
|
||||||
return ioutil.ReadAll(resp.Body)
|
|
||||||
}
|
|
||||||
|
|
||||||
// CheckClose is a utility function used to check the return from
|
|
||||||
// Close in a defer statement.
|
|
||||||
func CheckClose(c io.Closer, err *error) {
|
|
||||||
cerr := c.Close()
|
|
||||||
if *err == nil {
|
|
||||||
*err = cerr
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"encoding/json"
|
|
||||||
"io"
|
|
||||||
"net/url"
|
|
||||||
)
|
|
||||||
|
|
||||||
//CustomPropertyResponse struct we send and is returned by the API for CustomProperty request.
|
|
||||||
type CustomPropertyResponse struct {
|
|
||||||
CustomProperties map[string]interface{} `json:"custom_properties"`
|
|
||||||
}
|
|
||||||
|
|
||||||
//SetCustomProperty will set specified data from Yandex Disk
|
|
||||||
func (c *Client) SetCustomProperty(remotePath string, property string, value string) error {
|
|
||||||
rcm := map[string]interface{}{
|
|
||||||
property: value,
|
|
||||||
}
|
|
||||||
cpr := CustomPropertyResponse{rcm}
|
|
||||||
data, _ := json.Marshal(cpr)
|
|
||||||
body := bytes.NewReader(data)
|
|
||||||
err := c.SetCustomPropertyRequest(remotePath, body)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
//SetCustomPropertyRequest will make an CustomProperty request and return a URL to CustomProperty data to.
|
|
||||||
func (c *Client) SetCustomPropertyRequest(remotePath string, body io.Reader) (err error) {
|
|
||||||
values := url.Values{}
|
|
||||||
values.Add("path", remotePath)
|
|
||||||
req, err := c.scopedRequest("PATCH", "/v1/disk/resources?"+values.Encode(), body)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if err := CheckAPIError(resp); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
//If needed we can read response and check if custom_property is set.
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/url"
|
|
||||||
"strconv"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Delete will remove specified file/folder from Yandex Disk
|
|
||||||
func (c *Client) Delete(remotePath string, permanently bool) error {
|
|
||||||
|
|
||||||
values := url.Values{}
|
|
||||||
values.Add("permanently", strconv.FormatBool(permanently))
|
|
||||||
values.Add("path", remotePath)
|
|
||||||
urlPath := "/v1/disk/resources?" + values.Encode()
|
|
||||||
fullURL := RootAddr
|
|
||||||
if urlPath[:1] != "/" {
|
|
||||||
fullURL += "/" + urlPath
|
|
||||||
} else {
|
|
||||||
fullURL += urlPath
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PerformDelete(fullURL)
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "encoding/json"
|
|
||||||
|
|
||||||
//DiskInfoRequest type
|
|
||||||
type DiskInfoRequest struct {
|
|
||||||
client *Client
|
|
||||||
HTTPRequest *HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
func (req *DiskInfoRequest) request() *HTTPRequest {
|
|
||||||
return req.HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
//DiskInfoResponse struct is returned by the API for DiskInfo request.
|
|
||||||
type DiskInfoResponse struct {
|
|
||||||
TrashSize uint64 `json:"TrashSize"`
|
|
||||||
TotalSpace uint64 `json:"TotalSpace"`
|
|
||||||
UsedSpace uint64 `json:"UsedSpace"`
|
|
||||||
SystemFolders map[string]string `json:"SystemFolders"`
|
|
||||||
}
|
|
||||||
|
|
||||||
//NewDiskInfoRequest create new DiskInfo Request
|
|
||||||
func (c *Client) NewDiskInfoRequest() *DiskInfoRequest {
|
|
||||||
return &DiskInfoRequest{
|
|
||||||
client: c,
|
|
||||||
HTTPRequest: createGetRequest(c, "/", nil),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Exec run DiskInfo Request
|
|
||||||
func (req *DiskInfoRequest) Exec() (*DiskInfoResponse, error) {
|
|
||||||
data, err := req.request().run(req.client)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var info DiskInfoResponse
|
|
||||||
err = json.Unmarshal(data, &info)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if info.SystemFolders == nil {
|
|
||||||
info.SystemFolders = make(map[string]string)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"io"
|
|
||||||
"net/url"
|
|
||||||
)
|
|
||||||
|
|
||||||
// DownloadResponse struct is returned by the API for Download request.
|
|
||||||
type DownloadResponse struct {
|
|
||||||
HRef string `json:"href"`
|
|
||||||
Method string `json:"method"`
|
|
||||||
Templated bool `json:"templated"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// Download will get specified data from Yandex.Disk supplying the extra headers
|
|
||||||
func (c *Client) Download(remotePath string, headers map[string]string) (io.ReadCloser, error) { //io.Writer
|
|
||||||
ur, err := c.DownloadRequest(remotePath)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return c.PerformDownload(ur.HRef, headers)
|
|
||||||
}
|
|
||||||
|
|
||||||
// DownloadRequest will make an download request and return a URL to download data to.
|
|
||||||
func (c *Client) DownloadRequest(remotePath string) (ur *DownloadResponse, err error) {
|
|
||||||
values := url.Values{}
|
|
||||||
values.Add("path", remotePath)
|
|
||||||
|
|
||||||
req, err := c.scopedRequest("GET", "/v1/disk/resources/download?"+values.Encode(), nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := CheckAPIError(resp); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
ur, err = ParseDownloadResponse(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return ur, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ParseDownloadResponse tries to read and parse DownloadResponse struct.
|
|
||||||
func ParseDownloadResponse(data io.Reader) (*DownloadResponse, error) {
|
|
||||||
dec := json.NewDecoder(data)
|
|
||||||
var ur DownloadResponse
|
|
||||||
|
|
||||||
if err := dec.Decode(&ur); err == io.EOF {
|
|
||||||
// ok
|
|
||||||
} else if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: check if there is any trash data after JSON and crash if there is.
|
|
||||||
|
|
||||||
return &ur, nil
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// EmptyTrash will permanently delete all trashed files/folders from Yandex Disk
|
|
||||||
func (c *Client) EmptyTrash() error {
|
|
||||||
fullURL := RootAddr
|
|
||||||
fullURL += "/v1/disk/trash/resources"
|
|
||||||
|
|
||||||
return c.PerformDelete(fullURL)
|
|
||||||
}
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
//from yadisk
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ErrorResponse represents erroneous API response.
|
|
||||||
// Implements go's built in `error`.
|
|
||||||
type ErrorResponse struct {
|
|
||||||
ErrorName string `json:"error"`
|
|
||||||
Description string `json:"description"`
|
|
||||||
Message string `json:"message"`
|
|
||||||
|
|
||||||
StatusCode int `json:""`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *ErrorResponse) Error() string {
|
|
||||||
return fmt.Sprintf("[%d - %s] %s (%s)", e.StatusCode, e.ErrorName, e.Description, e.Message)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ProccessErrorResponse tries to represent data passed as
|
|
||||||
// an ErrorResponse object.
|
|
||||||
func ProccessErrorResponse(data io.Reader) (*ErrorResponse, error) {
|
|
||||||
dec := json.NewDecoder(data)
|
|
||||||
var errorResponse ErrorResponse
|
|
||||||
|
|
||||||
if err := dec.Decode(&errorResponse); err == io.EOF {
|
|
||||||
// ok
|
|
||||||
} else if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: check if there is any trash data after JSON and crash if there is.
|
|
||||||
|
|
||||||
return &errorResponse, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// CheckAPIError is a convenient function to turn erroneous
|
|
||||||
// API response into go error. It closes the Body on error.
|
|
||||||
func CheckAPIError(resp *http.Response) (err error) {
|
|
||||||
if resp.StatusCode >= 200 && resp.StatusCode < 400 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
errorResponse, err := ProccessErrorResponse(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
errorResponse.StatusCode = resp.StatusCode
|
|
||||||
|
|
||||||
return errorResponse
|
|
||||||
}
|
|
||||||
|
|
||||||
// ProccessErrorString tries to represent data passed as
|
|
||||||
// an ErrorResponse object.
|
|
||||||
func ProccessErrorString(data string) (*ErrorResponse, error) {
|
|
||||||
var errorResponse ErrorResponse
|
|
||||||
if err := json.Unmarshal([]byte(data), &errorResponse); err == nil {
|
|
||||||
// ok
|
|
||||||
} else if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: check if there is any trash data after JSON and crash if there is.
|
|
||||||
|
|
||||||
return &errorResponse, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ParseAPIError Parse json error response from API
|
|
||||||
func (c *Client) ParseAPIError(jsonErr string) (string, error) { //ErrorName
|
|
||||||
errorResponse, err := ProccessErrorString(jsonErr)
|
|
||||||
if err != nil {
|
|
||||||
return err.Error(), err
|
|
||||||
}
|
|
||||||
|
|
||||||
return errorResponse.ErrorName, nil
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "encoding/json"
|
|
||||||
|
|
||||||
//DiskClientError struct
|
|
||||||
type DiskClientError struct {
|
|
||||||
Description string `json:"Description"`
|
|
||||||
Code string `json:"Error"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e DiskClientError) Error() string {
|
|
||||||
b, _ := json.Marshal(e)
|
|
||||||
return string(b)
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// FilesResourceListResponse struct is returned by the API for requests.
|
|
||||||
type FilesResourceListResponse struct {
|
|
||||||
Items []ResourceInfoResponse `json:"items"`
|
|
||||||
Limit *uint64 `json:"limit"`
|
|
||||||
Offset *uint64 `json:"offset"`
|
|
||||||
}
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
// FlatFileListRequest struct client for FlatFileList Request
|
|
||||||
type FlatFileListRequest struct {
|
|
||||||
client *Client
|
|
||||||
HTTPRequest *HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// FlatFileListRequestOptions struct - options for request
|
|
||||||
type FlatFileListRequestOptions struct {
|
|
||||||
MediaType []MediaType
|
|
||||||
Limit *uint32
|
|
||||||
Offset *uint32
|
|
||||||
Fields []string
|
|
||||||
PreviewSize *PreviewSize
|
|
||||||
PreviewCrop *bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// Request get request
|
|
||||||
func (req *FlatFileListRequest) Request() *HTTPRequest {
|
|
||||||
return req.HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewFlatFileListRequest create new FlatFileList Request
|
|
||||||
func (c *Client) NewFlatFileListRequest(options ...FlatFileListRequestOptions) *FlatFileListRequest {
|
|
||||||
var parameters = make(map[string]interface{})
|
|
||||||
if len(options) > 0 {
|
|
||||||
opt := options[0]
|
|
||||||
if opt.Limit != nil {
|
|
||||||
parameters["limit"] = *opt.Limit
|
|
||||||
}
|
|
||||||
if opt.Offset != nil {
|
|
||||||
parameters["offset"] = *opt.Offset
|
|
||||||
}
|
|
||||||
if opt.Fields != nil {
|
|
||||||
parameters["fields"] = strings.Join(opt.Fields, ",")
|
|
||||||
}
|
|
||||||
if opt.PreviewSize != nil {
|
|
||||||
parameters["preview_size"] = opt.PreviewSize.String()
|
|
||||||
}
|
|
||||||
if opt.PreviewCrop != nil {
|
|
||||||
parameters["preview_crop"] = *opt.PreviewCrop
|
|
||||||
}
|
|
||||||
if opt.MediaType != nil {
|
|
||||||
var strMediaTypes = make([]string, len(opt.MediaType))
|
|
||||||
for i, t := range opt.MediaType {
|
|
||||||
strMediaTypes[i] = t.String()
|
|
||||||
}
|
|
||||||
parameters["media_type"] = strings.Join(strMediaTypes, ",")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &FlatFileListRequest{
|
|
||||||
client: c,
|
|
||||||
HTTPRequest: createGetRequest(c, "/resources/files", parameters),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exec run FlatFileList Request
|
|
||||||
func (req *FlatFileListRequest) Exec() (*FilesResourceListResponse, error) {
|
|
||||||
data, err := req.Request().run(req.client)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var info FilesResourceListResponse
|
|
||||||
err = json.Unmarshal(data, &info)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if cap(info.Items) == 0 {
|
|
||||||
info.Items = []ResourceInfoResponse{}
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// HTTPRequest struct
|
|
||||||
type HTTPRequest struct {
|
|
||||||
Method string
|
|
||||||
Path string
|
|
||||||
Parameters map[string]interface{}
|
|
||||||
Headers map[string][]string
|
|
||||||
}
|
|
||||||
|
|
||||||
func createGetRequest(client *Client, path string, params map[string]interface{}) *HTTPRequest {
|
|
||||||
return createRequest(client, "GET", path, params)
|
|
||||||
}
|
|
||||||
|
|
||||||
func createRequest(client *Client, method string, path string, parameters map[string]interface{}) *HTTPRequest {
|
|
||||||
var headers = make(map[string][]string)
|
|
||||||
headers["Authorization"] = []string{"OAuth " + client.token}
|
|
||||||
return &HTTPRequest{
|
|
||||||
Method: method,
|
|
||||||
Path: path,
|
|
||||||
Parameters: parameters,
|
|
||||||
Headers: headers,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// LastUploadedResourceListResponse struct
|
|
||||||
type LastUploadedResourceListResponse struct {
|
|
||||||
Items []ResourceInfoResponse `json:"items"`
|
|
||||||
Limit *uint64 `json:"limit"`
|
|
||||||
}
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
// LastUploadedResourceListRequest struct
|
|
||||||
type LastUploadedResourceListRequest struct {
|
|
||||||
client *Client
|
|
||||||
HTTPRequest *HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// LastUploadedResourceListRequestOptions struct
|
|
||||||
type LastUploadedResourceListRequestOptions struct {
|
|
||||||
MediaType []MediaType
|
|
||||||
Limit *uint32
|
|
||||||
Fields []string
|
|
||||||
PreviewSize *PreviewSize
|
|
||||||
PreviewCrop *bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// Request return request
|
|
||||||
func (req *LastUploadedResourceListRequest) Request() *HTTPRequest {
|
|
||||||
return req.HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewLastUploadedResourceListRequest create new LastUploadedResourceList Request
|
|
||||||
func (c *Client) NewLastUploadedResourceListRequest(options ...LastUploadedResourceListRequestOptions) *LastUploadedResourceListRequest {
|
|
||||||
var parameters = make(map[string]interface{})
|
|
||||||
if len(options) > 0 {
|
|
||||||
opt := options[0]
|
|
||||||
if opt.Limit != nil {
|
|
||||||
parameters["limit"] = opt.Limit
|
|
||||||
}
|
|
||||||
if opt.Fields != nil {
|
|
||||||
parameters["fields"] = strings.Join(opt.Fields, ",")
|
|
||||||
}
|
|
||||||
if opt.PreviewSize != nil {
|
|
||||||
parameters["preview_size"] = opt.PreviewSize.String()
|
|
||||||
}
|
|
||||||
if opt.PreviewCrop != nil {
|
|
||||||
parameters["preview_crop"] = opt.PreviewCrop
|
|
||||||
}
|
|
||||||
if opt.MediaType != nil {
|
|
||||||
var strMediaTypes = make([]string, len(opt.MediaType))
|
|
||||||
for i, t := range opt.MediaType {
|
|
||||||
strMediaTypes[i] = t.String()
|
|
||||||
}
|
|
||||||
parameters["media_type"] = strings.Join(strMediaTypes, ",")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &LastUploadedResourceListRequest{
|
|
||||||
client: c,
|
|
||||||
HTTPRequest: createGetRequest(c, "/resources/last-uploaded", parameters),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exec run LastUploadedResourceList Request
|
|
||||||
func (req *LastUploadedResourceListRequest) Exec() (*LastUploadedResourceListResponse, error) {
|
|
||||||
data, err := req.Request().run(req.client)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var info LastUploadedResourceListResponse
|
|
||||||
err = json.Unmarshal(data, &info)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if cap(info.Items) == 0 {
|
|
||||||
info.Items = []ResourceInfoResponse{}
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
@@ -1,144 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// MediaType struct - media types
|
|
||||||
type MediaType struct {
|
|
||||||
mediaType string
|
|
||||||
}
|
|
||||||
|
|
||||||
// Audio - media type
|
|
||||||
func (m *MediaType) Audio() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "audio",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Backup - media type
|
|
||||||
func (m *MediaType) Backup() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "backup",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Book - media type
|
|
||||||
func (m *MediaType) Book() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "book",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compressed - media type
|
|
||||||
func (m *MediaType) Compressed() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "compressed",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Data - media type
|
|
||||||
func (m *MediaType) Data() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "data",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Development - media type
|
|
||||||
func (m *MediaType) Development() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "development",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Diskimage - media type
|
|
||||||
func (m *MediaType) Diskimage() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "diskimage",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Document - media type
|
|
||||||
func (m *MediaType) Document() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "document",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Encoded - media type
|
|
||||||
func (m *MediaType) Encoded() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "encoded",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Executable - media type
|
|
||||||
func (m *MediaType) Executable() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "executable",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flash - media type
|
|
||||||
func (m *MediaType) Flash() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "flash",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Font - media type
|
|
||||||
func (m *MediaType) Font() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "font",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Image - media type
|
|
||||||
func (m *MediaType) Image() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "image",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Settings - media type
|
|
||||||
func (m *MediaType) Settings() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "settings",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Spreadsheet - media type
|
|
||||||
func (m *MediaType) Spreadsheet() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "spreadsheet",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Text - media type
|
|
||||||
func (m *MediaType) Text() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "text",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unknown - media type
|
|
||||||
func (m *MediaType) Unknown() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "unknown",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Video - media type
|
|
||||||
func (m *MediaType) Video() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "video",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Web - media type
|
|
||||||
func (m *MediaType) Web() *MediaType {
|
|
||||||
return &MediaType{
|
|
||||||
mediaType: "web",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// String - media type
|
|
||||||
func (m *MediaType) String() string {
|
|
||||||
return m.mediaType
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"net/url"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Mkdir will make specified folder on Yandex Disk
|
|
||||||
func (c *Client) Mkdir(remotePath string) (int, string, error) {
|
|
||||||
|
|
||||||
values := url.Values{}
|
|
||||||
values.Add("path", remotePath) // only one current folder will be created. Not all the folders in the path.
|
|
||||||
urlPath := "/v1/disk/resources?" + values.Encode()
|
|
||||||
fullURL := RootAddr
|
|
||||||
if urlPath[:1] != "/" {
|
|
||||||
fullURL += "/" + urlPath
|
|
||||||
} else {
|
|
||||||
fullURL += urlPath
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PerformMkdir(fullURL)
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// PerformDelete does the actual delete via DELETE request.
|
|
||||||
func (c *Client) PerformDelete(url string) error {
|
|
||||||
req, err := http.NewRequest("DELETE", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
//set access token and headers
|
|
||||||
c.setRequestScope(req)
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
//204 - resource deleted.
|
|
||||||
//202 - folder not empty, content will be deleted soon (async delete).
|
|
||||||
if resp.StatusCode != 204 && resp.StatusCode != 202 {
|
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return errors.Errorf("delete error [%d]: %s", resp.StatusCode, string(body))
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// PerformDownload does the actual download via unscoped GET request.
|
|
||||||
func (c *Client) PerformDownload(url string, headers map[string]string) (out io.ReadCloser, err error) {
|
|
||||||
req, err := http.NewRequest("GET", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set any extra headers
|
|
||||||
for k, v := range headers {
|
|
||||||
req.Header.Set(k, v)
|
|
||||||
}
|
|
||||||
|
|
||||||
//c.setRequestScope(req)
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
_, isRanging := req.Header["Range"]
|
|
||||||
if !(resp.StatusCode == http.StatusOK || (isRanging && resp.StatusCode == http.StatusPartialContent)) {
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return nil, errors.Errorf("download error [%d]: %s", resp.StatusCode, string(body))
|
|
||||||
}
|
|
||||||
return resp.Body, err
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// PerformMkdir does the actual mkdir via PUT request.
|
|
||||||
func (c *Client) PerformMkdir(url string) (int, string, error) {
|
|
||||||
req, err := http.NewRequest("PUT", url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return 0, "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
//set access token and headers
|
|
||||||
c.setRequestScope(req)
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return 0, "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.StatusCode != 201 {
|
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return 0, "", err
|
|
||||||
}
|
|
||||||
//third parameter is the json error response body
|
|
||||||
return resp.StatusCode, string(body), errors.Errorf("create folder error [%d]: %s", resp.StatusCode, string(body))
|
|
||||||
}
|
|
||||||
return resp.StatusCode, "", nil
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
//from yadisk
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
// PerformUpload does the actual upload via unscoped PUT request.
|
|
||||||
func (c *Client) PerformUpload(url string, data io.Reader, contentType string) (err error) {
|
|
||||||
req, err := http.NewRequest("PUT", url, data)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
req.Header.Set("Content-Type", contentType)
|
|
||||||
|
|
||||||
//c.setRequestScope(req)
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
if resp.StatusCode != 201 {
|
|
||||||
body, err := ioutil.ReadAll(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return errors.Errorf("upload error [%d]: %s", resp.StatusCode, string(body))
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
// PreviewSize struct
|
|
||||||
type PreviewSize struct {
|
|
||||||
size string
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeS - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeS() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "S",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeM - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeM() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "M",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeL - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeL() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "L",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeXL - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeXL() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "XL",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeXXL - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeXXL() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "XXL",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// PredefinedSizeXXXL - set preview size
|
|
||||||
func (s *PreviewSize) PredefinedSizeXXXL() *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: "XXXL",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExactWidth - set preview size
|
|
||||||
func (s *PreviewSize) ExactWidth(width uint32) *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: fmt.Sprintf("%dx", width),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExactHeight - set preview size
|
|
||||||
func (s *PreviewSize) ExactHeight(height uint32) *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: fmt.Sprintf("x%d", height),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExactSize - set preview size
|
|
||||||
func (s *PreviewSize) ExactSize(width uint32, height uint32) *PreviewSize {
|
|
||||||
return &PreviewSize{
|
|
||||||
size: fmt.Sprintf("%dx%d", width, height),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *PreviewSize) String() string {
|
|
||||||
return s.size
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
//ResourceInfoResponse struct is returned by the API for metedata requests.
|
|
||||||
type ResourceInfoResponse struct {
|
|
||||||
PublicKey string `json:"public_key"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Created string `json:"created"`
|
|
||||||
CustomProperties map[string]interface{} `json:"custom_properties"`
|
|
||||||
Preview string `json:"preview"`
|
|
||||||
PublicURL string `json:"public_url"`
|
|
||||||
OriginPath string `json:"origin_path"`
|
|
||||||
Modified string `json:"modified"`
|
|
||||||
Path string `json:"path"`
|
|
||||||
Md5 string `json:"md5"`
|
|
||||||
ResourceType string `json:"type"`
|
|
||||||
MimeType string `json:"mime_type"`
|
|
||||||
Size uint64 `json:"size"`
|
|
||||||
Embedded *ResourceListResponse `json:"_embedded"`
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "encoding/json"
|
|
||||||
|
|
||||||
// ResourceInfoRequest struct
|
|
||||||
type ResourceInfoRequest struct {
|
|
||||||
client *Client
|
|
||||||
HTTPRequest *HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// Request of ResourceInfoRequest
|
|
||||||
func (req *ResourceInfoRequest) Request() *HTTPRequest {
|
|
||||||
return req.HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewResourceInfoRequest create new ResourceInfo Request
|
|
||||||
func (c *Client) NewResourceInfoRequest(path string, options ...ResourceInfoRequestOptions) *ResourceInfoRequest {
|
|
||||||
return &ResourceInfoRequest{
|
|
||||||
client: c,
|
|
||||||
HTTPRequest: createResourceInfoRequest(c, "/resources", path, options...),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exec run ResourceInfo Request
|
|
||||||
func (req *ResourceInfoRequest) Exec() (*ResourceInfoResponse, error) {
|
|
||||||
data, err := req.Request().run(req.client)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var info ResourceInfoResponse
|
|
||||||
err = json.Unmarshal(data, &info)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if info.CustomProperties == nil {
|
|
||||||
info.CustomProperties = make(map[string]interface{})
|
|
||||||
}
|
|
||||||
if info.Embedded != nil {
|
|
||||||
if cap(info.Embedded.Items) == 0 {
|
|
||||||
info.Embedded.Items = []ResourceInfoResponse{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "strings"
|
|
||||||
|
|
||||||
func createResourceInfoRequest(c *Client,
|
|
||||||
apiPath string,
|
|
||||||
path string,
|
|
||||||
options ...ResourceInfoRequestOptions) *HTTPRequest {
|
|
||||||
var parameters = make(map[string]interface{})
|
|
||||||
parameters["path"] = path
|
|
||||||
if len(options) > 0 {
|
|
||||||
opt := options[0]
|
|
||||||
if opt.SortMode != nil {
|
|
||||||
parameters["sort"] = opt.SortMode.String()
|
|
||||||
}
|
|
||||||
if opt.Limit != nil {
|
|
||||||
parameters["limit"] = *opt.Limit
|
|
||||||
}
|
|
||||||
if opt.Offset != nil {
|
|
||||||
parameters["offset"] = *opt.Offset
|
|
||||||
}
|
|
||||||
if opt.Fields != nil {
|
|
||||||
parameters["fields"] = strings.Join(opt.Fields, ",")
|
|
||||||
}
|
|
||||||
if opt.PreviewSize != nil {
|
|
||||||
parameters["preview_size"] = opt.PreviewSize.String()
|
|
||||||
}
|
|
||||||
if opt.PreviewCrop != nil {
|
|
||||||
parameters["preview_crop"] = *opt.PreviewCrop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return createGetRequest(c, apiPath, parameters)
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// ResourceInfoRequestOptions struct
|
|
||||||
type ResourceInfoRequestOptions struct {
|
|
||||||
SortMode *SortMode
|
|
||||||
Limit *uint32
|
|
||||||
Offset *uint32
|
|
||||||
Fields []string
|
|
||||||
PreviewSize *PreviewSize
|
|
||||||
PreviewCrop *bool
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
// ResourceListResponse struct
|
|
||||||
type ResourceListResponse struct {
|
|
||||||
Sort *SortMode `json:"sort"`
|
|
||||||
PublicKey string `json:"public_key"`
|
|
||||||
Items []ResourceInfoResponse `json:"items"`
|
|
||||||
Path string `json:"path"`
|
|
||||||
Limit *uint64 `json:"limit"`
|
|
||||||
Offset *uint64 `json:"offset"`
|
|
||||||
Total *uint64 `json:"total"`
|
|
||||||
}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "strings"
|
|
||||||
|
|
||||||
// SortMode struct - sort mode
|
|
||||||
type SortMode struct {
|
|
||||||
mode string
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default - sort mode
|
|
||||||
func (m *SortMode) Default() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ByName - sort mode
|
|
||||||
func (m *SortMode) ByName() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "name",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ByPath - sort mode
|
|
||||||
func (m *SortMode) ByPath() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "path",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ByCreated - sort mode
|
|
||||||
func (m *SortMode) ByCreated() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "created",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ByModified - sort mode
|
|
||||||
func (m *SortMode) ByModified() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "modified",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// BySize - sort mode
|
|
||||||
func (m *SortMode) BySize() *SortMode {
|
|
||||||
return &SortMode{
|
|
||||||
mode: "size",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reverse - sort mode
|
|
||||||
func (m *SortMode) Reverse() *SortMode {
|
|
||||||
if strings.HasPrefix(m.mode, "-") {
|
|
||||||
return &SortMode{
|
|
||||||
mode: m.mode[1:],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &SortMode{
|
|
||||||
mode: "-" + m.mode,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *SortMode) String() string {
|
|
||||||
return m.mode
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnmarshalJSON sort mode
|
|
||||||
func (m *SortMode) UnmarshalJSON(value []byte) error {
|
|
||||||
if value == nil || len(value) == 0 {
|
|
||||||
m.mode = ""
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
m.mode = string(value)
|
|
||||||
if strings.HasPrefix(m.mode, "\"") && strings.HasSuffix(m.mode, "\"") {
|
|
||||||
m.mode = m.mode[1 : len(m.mode)-1]
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
import "encoding/json"
|
|
||||||
|
|
||||||
// TrashResourceInfoRequest struct
|
|
||||||
type TrashResourceInfoRequest struct {
|
|
||||||
client *Client
|
|
||||||
HTTPRequest *HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// Request of TrashResourceInfoRequest struct
|
|
||||||
func (req *TrashResourceInfoRequest) Request() *HTTPRequest {
|
|
||||||
return req.HTTPRequest
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewTrashResourceInfoRequest create new TrashResourceInfo Request
|
|
||||||
func (c *Client) NewTrashResourceInfoRequest(path string, options ...ResourceInfoRequestOptions) *TrashResourceInfoRequest {
|
|
||||||
return &TrashResourceInfoRequest{
|
|
||||||
client: c,
|
|
||||||
HTTPRequest: createResourceInfoRequest(c, "/trash/resources", path, options...),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exec run TrashResourceInfo Request
|
|
||||||
func (req *TrashResourceInfoRequest) Exec() (*ResourceInfoResponse, error) {
|
|
||||||
data, err := req.Request().run(req.client)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var info ResourceInfoResponse
|
|
||||||
err = json.Unmarshal(data, &info)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if info.CustomProperties == nil {
|
|
||||||
info.CustomProperties = make(map[string]interface{})
|
|
||||||
}
|
|
||||||
if info.Embedded != nil {
|
|
||||||
if cap(info.Embedded.Items) == 0 {
|
|
||||||
info.Embedded.Items = []ResourceInfoResponse{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
157
backend/yandex/api/types.go
Normal file
157
backend/yandex/api/types.go
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
// DiskInfo contains disk metadata
|
||||||
|
type DiskInfo struct {
|
||||||
|
TotalSpace int64 `json:"total_space"`
|
||||||
|
UsedSpace int64 `json:"used_space"`
|
||||||
|
TrashSize int64 `json:"trash_size"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResourceInfoRequestOptions struct
|
||||||
|
type ResourceInfoRequestOptions struct {
|
||||||
|
SortMode *SortMode
|
||||||
|
Limit uint64
|
||||||
|
Offset uint64
|
||||||
|
Fields []string
|
||||||
|
}
|
||||||
|
|
||||||
|
//ResourceInfoResponse struct is returned by the API for metedata requests.
|
||||||
|
type ResourceInfoResponse struct {
|
||||||
|
PublicKey string `json:"public_key"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Created string `json:"created"`
|
||||||
|
CustomProperties map[string]interface{} `json:"custom_properties"`
|
||||||
|
Preview string `json:"preview"`
|
||||||
|
PublicURL string `json:"public_url"`
|
||||||
|
OriginPath string `json:"origin_path"`
|
||||||
|
Modified string `json:"modified"`
|
||||||
|
Path string `json:"path"`
|
||||||
|
Md5 string `json:"md5"`
|
||||||
|
ResourceType string `json:"type"`
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
Size int64 `json:"size"`
|
||||||
|
Embedded *ResourceListResponse `json:"_embedded"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResourceListResponse struct
|
||||||
|
type ResourceListResponse struct {
|
||||||
|
Sort *SortMode `json:"sort"`
|
||||||
|
PublicKey string `json:"public_key"`
|
||||||
|
Items []ResourceInfoResponse `json:"items"`
|
||||||
|
Path string `json:"path"`
|
||||||
|
Limit *uint64 `json:"limit"`
|
||||||
|
Offset *uint64 `json:"offset"`
|
||||||
|
Total *uint64 `json:"total"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// AsyncInfo struct is returned by the API for various async operations.
|
||||||
|
type AsyncInfo struct {
|
||||||
|
HRef string `json:"href"`
|
||||||
|
Method string `json:"method"`
|
||||||
|
Templated bool `json:"templated"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// AsyncStatus is returned when requesting the status of an async operations. Possble values in-progress, success, failure
|
||||||
|
type AsyncStatus struct {
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
|
||||||
|
//CustomPropertyResponse struct we send and is returned by the API for CustomProperty request.
|
||||||
|
type CustomPropertyResponse struct {
|
||||||
|
CustomProperties map[string]interface{} `json:"custom_properties"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SortMode struct - sort mode
|
||||||
|
type SortMode struct {
|
||||||
|
mode string
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default - sort mode
|
||||||
|
func (m *SortMode) Default() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ByName - sort mode
|
||||||
|
func (m *SortMode) ByName() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "name",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ByPath - sort mode
|
||||||
|
func (m *SortMode) ByPath() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "path",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ByCreated - sort mode
|
||||||
|
func (m *SortMode) ByCreated() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "created",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ByModified - sort mode
|
||||||
|
func (m *SortMode) ByModified() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "modified",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// BySize - sort mode
|
||||||
|
func (m *SortMode) BySize() *SortMode {
|
||||||
|
return &SortMode{
|
||||||
|
mode: "size",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reverse - sort mode
|
||||||
|
func (m *SortMode) Reverse() *SortMode {
|
||||||
|
if strings.HasPrefix(m.mode, "-") {
|
||||||
|
return &SortMode{
|
||||||
|
mode: m.mode[1:],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &SortMode{
|
||||||
|
mode: "-" + m.mode,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *SortMode) String() string {
|
||||||
|
return m.mode
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalJSON sort mode
|
||||||
|
func (m *SortMode) UnmarshalJSON(value []byte) error {
|
||||||
|
if value == nil || len(value) == 0 {
|
||||||
|
m.mode = ""
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
m.mode = string(value)
|
||||||
|
if strings.HasPrefix(m.mode, "\"") && strings.HasSuffix(m.mode, "\"") {
|
||||||
|
m.mode = m.mode[1 : len(m.mode)-1]
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ErrorResponse represents erroneous API response.
|
||||||
|
// Implements go's built in `error`.
|
||||||
|
type ErrorResponse struct {
|
||||||
|
ErrorName string `json:"error"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
|
||||||
|
StatusCode int `json:""`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *ErrorResponse) Error() string {
|
||||||
|
return fmt.Sprintf("[%d - %s] %s (%s)", e.StatusCode, e.ErrorName, e.Description, e.Message)
|
||||||
|
}
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
package src
|
|
||||||
|
|
||||||
//from yadisk
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"io"
|
|
||||||
"net/url"
|
|
||||||
"strconv"
|
|
||||||
)
|
|
||||||
|
|
||||||
// UploadResponse struct is returned by the API for upload request.
|
|
||||||
type UploadResponse struct {
|
|
||||||
HRef string `json:"href"`
|
|
||||||
Method string `json:"method"`
|
|
||||||
Templated bool `json:"templated"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// Upload will put specified data to Yandex.Disk.
|
|
||||||
func (c *Client) Upload(data io.Reader, remotePath string, overwrite bool, contentType string) error {
|
|
||||||
ur, err := c.UploadRequest(remotePath, overwrite)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PerformUpload(ur.HRef, data, contentType)
|
|
||||||
}
|
|
||||||
|
|
||||||
// UploadRequest will make an upload request and return a URL to upload data to.
|
|
||||||
func (c *Client) UploadRequest(remotePath string, overwrite bool) (ur *UploadResponse, err error) {
|
|
||||||
values := url.Values{}
|
|
||||||
values.Add("path", remotePath)
|
|
||||||
values.Add("overwrite", strconv.FormatBool(overwrite))
|
|
||||||
|
|
||||||
req, err := c.scopedRequest("GET", "/v1/disk/resources/upload?"+values.Encode(), nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := c.HTTPClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := CheckAPIError(resp); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer CheckClose(resp.Body, &err)
|
|
||||||
|
|
||||||
ur, err = ParseUploadResponse(resp.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return ur, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ParseUploadResponse tries to read and parse UploadResponse struct.
|
|
||||||
func ParseUploadResponse(data io.Reader) (*UploadResponse, error) {
|
|
||||||
dec := json.NewDecoder(data)
|
|
||||||
var ur UploadResponse
|
|
||||||
|
|
||||||
if err := dec.Decode(&ur); err == io.EOF {
|
|
||||||
// ok
|
|
||||||
} else if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: check if there is any trash data after JSON and crash if there is.
|
|
||||||
|
|
||||||
return &ur, nil
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -63,7 +63,9 @@ var osarches = []string{
|
|||||||
|
|
||||||
// Special environment flags for a given arch
|
// Special environment flags for a given arch
|
||||||
var archFlags = map[string][]string{
|
var archFlags = map[string][]string{
|
||||||
"386": {"GO386=387"},
|
"386": {"GO386=387"},
|
||||||
|
"mips": {"GOMIPS=softfloat"},
|
||||||
|
"mipsle": {"GOMIPS=softfloat"},
|
||||||
}
|
}
|
||||||
|
|
||||||
// runEnv - run a shell command with env
|
// runEnv - run a shell command with env
|
||||||
|
|||||||
59
bin/test_independence.go
Normal file
59
bin/test_independence.go
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
// +build ignore
|
||||||
|
|
||||||
|
// Test that the tests in the suite passed in are independent
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"os/exec"
|
||||||
|
"regexp"
|
||||||
|
)
|
||||||
|
|
||||||
|
var matchLine = regexp.MustCompile(`(?m)^=== RUN\s*(TestIntegration/\S*)\s*$`)
|
||||||
|
|
||||||
|
// run the test pass in and grep out the test names
|
||||||
|
func findTests(packageToTest string) (tests []string) {
|
||||||
|
cmd := exec.Command("go", "test", "-v", packageToTest)
|
||||||
|
out, err := cmd.CombinedOutput()
|
||||||
|
if err != nil {
|
||||||
|
_, _ = os.Stderr.Write(out)
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
results := matchLine.FindAllSubmatch(out, -1)
|
||||||
|
if results == nil {
|
||||||
|
log.Fatal("No tests found")
|
||||||
|
}
|
||||||
|
for _, line := range results {
|
||||||
|
tests = append(tests, string(line[1]))
|
||||||
|
}
|
||||||
|
return tests
|
||||||
|
}
|
||||||
|
|
||||||
|
// run the test passed in with the -run passed in
|
||||||
|
func runTest(packageToTest string, testName string) {
|
||||||
|
cmd := exec.Command("go", "test", "-v", packageToTest, "-run", "^"+testName+"$")
|
||||||
|
out, err := cmd.CombinedOutput()
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("%s FAILED ------------------", testName)
|
||||||
|
_, _ = os.Stderr.Write(out)
|
||||||
|
log.Printf("%s FAILED ------------------", testName)
|
||||||
|
} else {
|
||||||
|
log.Printf("%s OK", testName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func main() {
|
||||||
|
flag.Parse()
|
||||||
|
args := flag.Args()
|
||||||
|
if len(args) != 1 {
|
||||||
|
log.Fatalf("Syntax: %s <test_to_run>", os.Args[0])
|
||||||
|
}
|
||||||
|
packageToTest := args[0]
|
||||||
|
testNames := findTests(packageToTest)
|
||||||
|
// fmt.Printf("%s\n", testNames)
|
||||||
|
for _, testName := range testNames {
|
||||||
|
runTest(packageToTest, testName)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -53,7 +53,6 @@ func mountOptions(device string, mountpoint string) (options []string) {
|
|||||||
|
|
||||||
// OSX options
|
// OSX options
|
||||||
if runtime.GOOS == "darwin" {
|
if runtime.GOOS == "darwin" {
|
||||||
options = append(options, "-o", "volname="+mountlib.VolumeName)
|
|
||||||
if mountlib.NoAppleDouble {
|
if mountlib.NoAppleDouble {
|
||||||
options = append(options, "-o", "noappledouble")
|
options = append(options, "-o", "noappledouble")
|
||||||
}
|
}
|
||||||
@@ -70,6 +69,11 @@ func mountOptions(device string, mountpoint string) (options []string) {
|
|||||||
options = append(options, "--FileSystemName=rclone")
|
options = append(options, "--FileSystemName=rclone")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
|
||||||
|
if mountlib.VolumeName != "" {
|
||||||
|
options = append(options, "-o", "volname="+mountlib.VolumeName)
|
||||||
|
}
|
||||||
|
}
|
||||||
if mountlib.AllowNonEmpty {
|
if mountlib.AllowNonEmpty {
|
||||||
options = append(options, "-o", "nonempty")
|
options = append(options, "-o", "nonempty")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ func (r *results) checkChar(c rune) {
|
|||||||
escape := false
|
escape := false
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fs.Infof(r.f, "Couldn't write file 0x%02X", c)
|
fs.Infof(r.f, "Couldn't write file 0x%02X", c)
|
||||||
|
escape = true
|
||||||
} else {
|
} else {
|
||||||
fs.Infof(r.f, "OK writing file 0x%02X", c)
|
fs.Infof(r.f, "OK writing file 0x%02X", c)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ systems are a long way from 100% reliable. The rclone sync/copy
|
|||||||
commands cope with this with lots of retries. However rclone ` + commandName + `
|
commands cope with this with lots of retries. However rclone ` + commandName + `
|
||||||
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. Look at the [file caching](#file-caching)
|
uploads. Look at the [file caching](#file-caching)
|
||||||
for solutions to make ` + commandName + ` mount more reliable.
|
for solutions to make ` + commandName + ` more reliable.
|
||||||
|
|
||||||
### Attribute caching
|
### Attribute caching
|
||||||
|
|
||||||
|
|||||||
@@ -424,20 +424,13 @@ func (u *UI) removeEntry(pos int) {
|
|||||||
func (u *UI) delete() {
|
func (u *UI) delete() {
|
||||||
dirPos := u.sortPerm[u.dirPosMap[u.path].entry]
|
dirPos := u.sortPerm[u.dirPosMap[u.path].entry]
|
||||||
entry := u.entries[dirPos]
|
entry := u.entries[dirPos]
|
||||||
|
|
||||||
file := false
|
|
||||||
d, _ := u.d.GetDir(dirPos)
|
|
||||||
if d == nil {
|
|
||||||
file = true
|
|
||||||
}
|
|
||||||
|
|
||||||
u.boxMenu = []string{"cancel", "confirm"}
|
u.boxMenu = []string{"cancel", "confirm"}
|
||||||
if file {
|
if obj, isFile := entry.(fs.Object); isFile {
|
||||||
u.boxMenuHandler = func(f fs.Fs, p string, o int) (string, error) {
|
u.boxMenuHandler = func(f fs.Fs, p string, o int) (string, error) {
|
||||||
if o != 1 {
|
if o != 1 {
|
||||||
return "Aborted!", nil
|
return "Aborted!", nil
|
||||||
}
|
}
|
||||||
err := f.Rmdir(entry.String())
|
err := operations.DeleteFile(obj)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ func startProgress() func() {
|
|||||||
printProgress("")
|
printProgress("")
|
||||||
case <-stopStats:
|
case <-stopStats:
|
||||||
ticker.Stop()
|
ticker.Stop()
|
||||||
|
printProgress("")
|
||||||
fs.LogPrint = oldLogPrint
|
fs.LogPrint = oldLogPrint
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ Contributors
|
|||||||
* Marvin Watson <marvwatson@users.noreply.github.com>
|
* Marvin Watson <marvwatson@users.noreply.github.com>
|
||||||
* Danny Tsai <danny8376@gmail.com>
|
* Danny Tsai <danny8376@gmail.com>
|
||||||
* Yoni Jah <yonjah+git@gmail.com> <yonjah+github@gmail.com>
|
* Yoni Jah <yonjah+git@gmail.com> <yonjah+github@gmail.com>
|
||||||
* Stephen Harris <github@spuddy.org>
|
* Stephen Harris <github@spuddy.org> <sweharris@users.noreply.github.com>
|
||||||
* Ihor Dvoretskyi <ihor.dvoretskyi@gmail.com>
|
* Ihor Dvoretskyi <ihor.dvoretskyi@gmail.com>
|
||||||
* Jon Craton <jncraton@gmail.com>
|
* Jon Craton <jncraton@gmail.com>
|
||||||
* Hraban Luyat <hraban@0brg.net>
|
* Hraban Luyat <hraban@0brg.net>
|
||||||
@@ -210,3 +210,10 @@ Contributors
|
|||||||
* buergi <patbuergi@gmx.de>
|
* buergi <patbuergi@gmx.de>
|
||||||
* Florian Gamboeck <mail@floga.de>
|
* Florian Gamboeck <mail@floga.de>
|
||||||
* Ralf Hemberger <10364191+rhemberger@users.noreply.github.com>
|
* Ralf Hemberger <10364191+rhemberger@users.noreply.github.com>
|
||||||
|
* Scott Edlund <sedlund@users.noreply.github.com>
|
||||||
|
* Erik Swanson <erik@retailnext.net>
|
||||||
|
* Jake Coggiano <jake@stripe.com>
|
||||||
|
* brused27 <brused27@noemailaddress>
|
||||||
|
* Peter Kaminski <kaminski@istori.com>
|
||||||
|
* Henry Ptasinski <henry@logout.com>
|
||||||
|
* Alexander <kharkovalexander@gmail.com>
|
||||||
|
|||||||
@@ -1,11 +1,80 @@
|
|||||||
---
|
---
|
||||||
title: "Documentation"
|
title: "Documentation"
|
||||||
description: "Rclone Changelog"
|
description: "Rclone Changelog"
|
||||||
date: "2018-10-15"
|
date: "2018-11-24"
|
||||||
---
|
---
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.45 - 2018-11-24
|
||||||
|
|
||||||
|
* New backends
|
||||||
|
* The Yandex backend was re-written - see below for details (Sebastian Bünger)
|
||||||
|
* New commands
|
||||||
|
* rcd: New command just to serve the remote control API (Nick Craig-Wood)
|
||||||
|
* New Features
|
||||||
|
* The remote control API (rc) was greatly expanded to allow full control over rclone (Nick Craig-Wood)
|
||||||
|
* sensitive operations require authorization or the `--rc-no-auth` flag
|
||||||
|
* config/* operations to configure rclone
|
||||||
|
* options/* for reading/setting command line flags
|
||||||
|
* operations/* for all low level operations, eg copy file, list directory
|
||||||
|
* sync/* for sync, copy and move
|
||||||
|
* `--rc-files` flag to serve files on the rc http server
|
||||||
|
* this is for building web native GUIs for rclone
|
||||||
|
* Optionally serving objects on the rc http server
|
||||||
|
* Ensure rclone fails to start up if the `--rc` port is in use already
|
||||||
|
* See [the rc docs](https://rclone.org/rc/) for more info
|
||||||
|
* sync/copy/move
|
||||||
|
* Make `--files-from` only read the objects specified and don't scan directories (Nick Craig-Wood)
|
||||||
|
* This is a huge speed improvement for destinations with lots of files
|
||||||
|
* filter: Add `--ignore-case` flag (Nick Craig-Wood)
|
||||||
|
* ncdu: Add remove function ('d' key) (Henning Surmeier)
|
||||||
|
* rc command
|
||||||
|
* Add `--json` flag for structured JSON input (Nick Craig-Wood)
|
||||||
|
* Add `--user` and `--pass` flags and interpret `--rc-user`, `--rc-pass`, `--rc-addr` (Nick Craig-Wood)
|
||||||
|
* build
|
||||||
|
* Require go1.8 or later for compilation (Nick Craig-Wood)
|
||||||
|
* Enable softfloat on MIPS arch (Scott Edlund)
|
||||||
|
* Integration test framework revamped with a better report and better retries (Nick Craig-Wood)
|
||||||
|
* Bug Fixes
|
||||||
|
* cmd: Make --progress update the stats correctly at the end (Nick Craig-Wood)
|
||||||
|
* config: Create config directory on save if it is missing (Nick Craig-Wood)
|
||||||
|
* dedupe: Check for existing filename before renaming a dupe file (ssaqua)
|
||||||
|
* move: Don't create directories with --dry-run (Nick Craig-Wood)
|
||||||
|
* operations: Fix Purge and Rmdirs when dir is not the root (Nick Craig-Wood)
|
||||||
|
* serve http/webdav/restic: Ensure rclone exits if the port is in use (Nick Craig-Wood)
|
||||||
|
* Mount
|
||||||
|
* Make `--volname` work for Windows and macOS (Nick Craig-Wood)
|
||||||
|
* Azure Blob
|
||||||
|
* Avoid context deadline exceeded error by setting a large TryTimeout value (brused27)
|
||||||
|
* Fix erroneous Rmdir error "directory not empty" (Nick Craig-Wood)
|
||||||
|
* Wait for up to 60s to create a just deleted container (Nick Craig-Wood)
|
||||||
|
* Dropbox
|
||||||
|
* Add dropbox impersonate support (Jake Coggiano)
|
||||||
|
* Jottacloud
|
||||||
|
* Fix bug in `--fast-list` handing of empty folders (albertony)
|
||||||
|
* Opendrive
|
||||||
|
* Fix transfer of files with `+` and `&` in (Nick Craig-Wood)
|
||||||
|
* Fix retries of upload chunks (Nick Craig-Wood)
|
||||||
|
* S3
|
||||||
|
* Set ACL for server side copies to that provided by the user (Nick Craig-Wood)
|
||||||
|
* Fix role_arn, credential_source, ... (Erik Swanson)
|
||||||
|
* Add config info for Wasabi's US-West endpoint (Henry Ptasinski)
|
||||||
|
* SFTP
|
||||||
|
* Ensure file hash checking is really disabled (Jon Fautley)
|
||||||
|
* Swift
|
||||||
|
* Add pacer for retries to make swift more reliable (Nick Craig-Wood)
|
||||||
|
* WebDAV
|
||||||
|
* Add Content-Type to PUT requests (Nick Craig-Wood)
|
||||||
|
* Fix config parsing so `--webdav-user` and `--webdav-pass` flags work (Nick Craig-Wood)
|
||||||
|
* Add RFC3339 date format (Ralf Hemberger)
|
||||||
|
* Yandex
|
||||||
|
* The yandex backend was re-written (Sebastian Bünger)
|
||||||
|
* This implements low level retries (Sebastian Bünger)
|
||||||
|
* Copy, Move, DirMove, PublicLink and About optional interfaces (Sebastian Bünger)
|
||||||
|
* Improved general error handling (Sebastian Bünger)
|
||||||
|
* Removed ListR for now due to inconsistent behaviour (Sebastian Bünger)
|
||||||
|
|
||||||
## v1.44 - 2018-10-15
|
## v1.44 - 2018-10-15
|
||||||
|
|
||||||
* New commands
|
* New commands
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone"
|
title: "rclone"
|
||||||
slug: rclone
|
slug: rclone
|
||||||
url: /commands/rclone/
|
url: /commands/rclone/
|
||||||
@@ -61,13 +61,13 @@ rclone [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -92,8 +92,8 @@ rclone [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -125,6 +125,7 @@ rclone [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -139,7 +140,7 @@ rclone [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -153,6 +154,7 @@ rclone [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -205,7 +207,7 @@ rclone [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -215,18 +217,21 @@ rclone [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -287,7 +292,7 @@ rclone [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count 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
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
@@ -297,6 +302,7 @@ rclone [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
@@ -337,6 +343,7 @@ rclone [flags]
|
|||||||
* [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 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 rcd](/commands/rclone_rcd/) - Run rclone listening to remote control commands only.
|
||||||
* [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.
|
||||||
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
* [rclone serve](/commands/rclone_serve/) - Serve a remote over a protocol.
|
||||||
@@ -348,4 +355,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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone about"
|
title: "rclone about"
|
||||||
slug: rclone_about
|
slug: rclone_about
|
||||||
url: /commands/rclone_about/
|
url: /commands/rclone_about/
|
||||||
@@ -104,13 +104,13 @@ rclone about remote: [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -135,8 +135,8 @@ rclone about remote: [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -168,6 +168,7 @@ rclone about remote: [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -182,7 +183,7 @@ rclone about remote: [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -195,6 +196,7 @@ rclone about remote: [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -247,7 +249,7 @@ rclone about remote: [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -257,18 +259,21 @@ rclone about remote: [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -329,7 +334,7 @@ rclone about remote: [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -338,10 +343,11 @@ rclone about remote: [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone authorize"
|
title: "rclone authorize"
|
||||||
slug: rclone_authorize
|
slug: rclone_authorize
|
||||||
url: /commands/rclone_authorize/
|
url: /commands/rclone_authorize/
|
||||||
@@ -63,13 +63,13 @@ rclone authorize [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone authorize [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone authorize [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone authorize [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone authorize [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone authorize [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone authorize [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone authorize [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone authorize [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone cachestats"
|
title: "rclone cachestats"
|
||||||
slug: rclone_cachestats
|
slug: rclone_cachestats
|
||||||
url: /commands/rclone_cachestats/
|
url: /commands/rclone_cachestats/
|
||||||
@@ -62,13 +62,13 @@ rclone cachestats source: [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -93,8 +93,8 @@ rclone cachestats source: [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -126,6 +126,7 @@ rclone cachestats source: [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -140,7 +141,7 @@ rclone cachestats source: [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -153,6 +154,7 @@ rclone cachestats source: [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -205,7 +207,7 @@ rclone cachestats source: [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -215,18 +217,21 @@ rclone cachestats source: [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -287,7 +292,7 @@ rclone cachestats source: [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -296,10 +301,11 @@ rclone cachestats source: [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone cat"
|
title: "rclone cat"
|
||||||
slug: rclone_cat
|
slug: rclone_cat
|
||||||
url: /commands/rclone_cat/
|
url: /commands/rclone_cat/
|
||||||
@@ -84,13 +84,13 @@ rclone cat remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -115,8 +115,8 @@ rclone cat remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -148,6 +148,7 @@ rclone cat remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -162,7 +163,7 @@ rclone cat remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -175,6 +176,7 @@ rclone cat remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -227,7 +229,7 @@ rclone cat remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -237,18 +239,21 @@ rclone cat remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -309,7 +314,7 @@ rclone cat remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -318,10 +323,11 @@ rclone cat remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone check"
|
title: "rclone check"
|
||||||
slug: rclone_check
|
slug: rclone_check
|
||||||
url: /commands/rclone_check/
|
url: /commands/rclone_check/
|
||||||
@@ -78,13 +78,13 @@ rclone check source:path dest:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -109,8 +109,8 @@ rclone check source:path dest:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -142,6 +142,7 @@ rclone check source:path dest:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -156,7 +157,7 @@ rclone check source:path dest:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -169,6 +170,7 @@ rclone check source:path dest:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -221,7 +223,7 @@ rclone check source:path dest:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -231,18 +233,21 @@ rclone check source:path dest:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -303,7 +308,7 @@ rclone check source:path dest:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -312,10 +317,11 @@ rclone check source:path dest:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone cleanup"
|
title: "rclone cleanup"
|
||||||
slug: rclone_cleanup
|
slug: rclone_cleanup
|
||||||
url: /commands/rclone_cleanup/
|
url: /commands/rclone_cleanup/
|
||||||
@@ -63,13 +63,13 @@ rclone cleanup remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone cleanup remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone cleanup remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone cleanup remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone cleanup remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone cleanup remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone cleanup remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone cleanup remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone cleanup remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone config"
|
title: "rclone config"
|
||||||
slug: rclone_config
|
slug: rclone_config
|
||||||
url: /commands/rclone_config/
|
url: /commands/rclone_config/
|
||||||
@@ -63,13 +63,13 @@ rclone config [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone config [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone config [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone config [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone config [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone config [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone config [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone config [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,6 +302,7 @@ rclone config [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
@@ -312,4 +318,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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -68,13 +68,13 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -99,8 +99,8 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -132,6 +132,7 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -146,7 +147,7 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -159,6 +160,7 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -211,7 +213,7 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -221,18 +223,21 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -293,7 +298,7 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -302,10 +307,11 @@ rclone config create <name> <type> [<key> <value>]* [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -60,13 +60,13 @@ rclone config delete <name> [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone config delete <name> [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone config delete <name> [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone config delete <name> [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone config delete <name> [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone config delete <name> [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone config delete <name> [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone config delete <name> [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone config delete <name> [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -60,13 +60,13 @@ rclone config dump [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone config dump [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone config dump [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone config dump [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone config dump [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone config dump [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone config dump [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone config dump [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone config dump [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -63,13 +63,13 @@ rclone config edit [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone config edit [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone config edit [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone config edit [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone config edit [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone config edit [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone config edit [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone config edit [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone config edit [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -60,13 +60,13 @@ rclone config file [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone config file [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone config file [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone config file [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone config file [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone config file [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone config file [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone config file [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone config file [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -67,13 +67,13 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -98,8 +98,8 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -131,6 +131,7 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -145,7 +146,7 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -158,6 +159,7 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -210,7 +212,7 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -220,18 +222,21 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -292,7 +297,7 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -301,10 +306,11 @@ rclone config password <name> [<key> <value>]+ [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -60,13 +60,13 @@ rclone config providers [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone config providers [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone config providers [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone config providers [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone config providers [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone config providers [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone config providers [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone config providers [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone config providers [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -60,13 +60,13 @@ rclone config show [<remote>] [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone config show [<remote>] [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone config show [<remote>] [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone config show [<remote>] [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone config show [<remote>] [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone config show [<remote>] [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone config show [<remote>] [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone config show [<remote>] [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone config show [<remote>] [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -67,13 +67,13 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -98,8 +98,8 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -131,6 +131,7 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -145,7 +146,7 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -158,6 +159,7 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -210,7 +212,7 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -220,18 +222,21 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -292,7 +297,7 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -301,10 +306,11 @@ rclone config update <name> [<key> <value>]+ [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone copy"
|
title: "rclone copy"
|
||||||
slug: rclone_copy
|
slug: rclone_copy
|
||||||
url: /commands/rclone_copy/
|
url: /commands/rclone_copy/
|
||||||
@@ -47,6 +47,8 @@ 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.
|
||||||
|
|
||||||
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone copy source:path dest:path [flags]
|
rclone copy source:path dest:path [flags]
|
||||||
@@ -96,13 +98,13 @@ rclone copy source:path dest:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -127,8 +129,8 @@ rclone copy source:path dest:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -160,6 +162,7 @@ rclone copy source:path dest:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -174,7 +177,7 @@ rclone copy source:path dest:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -187,6 +190,7 @@ rclone copy source:path dest:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -239,7 +243,7 @@ rclone copy source:path dest:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -249,18 +253,21 @@ rclone copy source:path dest:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -321,7 +328,7 @@ rclone copy source:path dest:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -330,10 +337,11 @@ rclone copy source:path dest:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone copyto"
|
title: "rclone copyto"
|
||||||
slug: rclone_copyto
|
slug: rclone_copyto
|
||||||
url: /commands/rclone_copyto/
|
url: /commands/rclone_copyto/
|
||||||
@@ -37,6 +37,8 @@ This doesn't transfer unchanged files, testing by size and
|
|||||||
modification time or MD5SUM. It doesn't delete files from the
|
modification time or MD5SUM. It doesn't delete files from the
|
||||||
destination.
|
destination.
|
||||||
|
|
||||||
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone copyto source:path dest:path [flags]
|
rclone copyto source:path dest:path [flags]
|
||||||
@@ -86,13 +88,13 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -117,8 +119,8 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -150,6 +152,7 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -164,7 +167,7 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -177,6 +180,7 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -229,7 +233,7 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -239,18 +243,21 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -311,7 +318,7 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -320,10 +327,11 @@ rclone copyto source:path dest:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone copyurl"
|
title: "rclone copyurl"
|
||||||
slug: rclone_copyurl
|
slug: rclone_copyurl
|
||||||
url: /commands/rclone_copyurl/
|
url: /commands/rclone_copyurl/
|
||||||
@@ -63,13 +63,13 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone copyurl https://example.com dest:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone cryptcheck"
|
title: "rclone cryptcheck"
|
||||||
slug: rclone_cryptcheck
|
slug: rclone_cryptcheck
|
||||||
url: /commands/rclone_cryptcheck/
|
url: /commands/rclone_cryptcheck/
|
||||||
@@ -88,13 +88,13 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -119,8 +119,8 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -152,6 +152,7 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -166,7 +167,7 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -179,6 +180,7 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -231,7 +233,7 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -241,18 +243,21 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -313,7 +318,7 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -322,10 +327,11 @@ rclone cryptcheck remote:path cryptedremote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone cryptdecode"
|
title: "rclone cryptdecode"
|
||||||
slug: rclone_cryptdecode
|
slug: rclone_cryptdecode
|
||||||
url: /commands/rclone_cryptdecode/
|
url: /commands/rclone_cryptdecode/
|
||||||
@@ -72,13 +72,13 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -103,8 +103,8 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -136,6 +136,7 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -150,7 +151,7 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -163,6 +164,7 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -215,7 +217,7 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -225,18 +227,21 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -297,7 +302,7 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -306,10 +311,11 @@ rclone cryptdecode encryptedremote: encryptedfilename [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone dbhashsum"
|
title: "rclone dbhashsum"
|
||||||
slug: rclone_dbhashsum
|
slug: rclone_dbhashsum
|
||||||
url: /commands/rclone_dbhashsum/
|
url: /commands/rclone_dbhashsum/
|
||||||
@@ -65,13 +65,13 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -96,8 +96,8 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -129,6 +129,7 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -143,7 +144,7 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -156,6 +157,7 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -208,7 +210,7 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -218,18 +220,21 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -290,7 +295,7 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -299,10 +304,11 @@ rclone dbhashsum remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone dedupe"
|
title: "rclone dedupe"
|
||||||
slug: rclone_dedupe
|
slug: rclone_dedupe
|
||||||
url: /commands/rclone_dedupe/
|
url: /commands/rclone_dedupe/
|
||||||
@@ -141,13 +141,13 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -172,8 +172,8 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -205,6 +205,7 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -219,7 +220,7 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -232,6 +233,7 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -284,7 +286,7 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -294,18 +296,21 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -366,7 +371,7 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -375,10 +380,11 @@ rclone dedupe [mode] remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone delete"
|
title: "rclone delete"
|
||||||
slug: rclone_delete
|
slug: rclone_delete
|
||||||
url: /commands/rclone_delete/
|
url: /commands/rclone_delete/
|
||||||
@@ -11,9 +11,13 @@ Remove the contents of path.
|
|||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
Remove the contents of path. Unlike `purge` it obeys include/exclude
|
Remove the files in 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.
|
||||||
|
|
||||||
|
`rclone delete` only deletes objects but leaves the directory structure
|
||||||
|
alone. If you want to delete a directory and all of its contents use
|
||||||
|
`rclone purge`
|
||||||
|
|
||||||
Eg delete all files bigger than 100MBytes
|
Eg delete all files bigger than 100MBytes
|
||||||
|
|
||||||
Check what would be deleted first (use either)
|
Check what would be deleted first (use either)
|
||||||
@@ -77,13 +81,13 @@ rclone delete remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -108,8 +112,8 @@ rclone delete remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -141,6 +145,7 @@ rclone delete remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -155,7 +160,7 @@ rclone delete remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -168,6 +173,7 @@ rclone delete remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -220,7 +226,7 @@ rclone delete remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -230,18 +236,21 @@ rclone delete remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -302,7 +311,7 @@ rclone delete remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -311,10 +320,11 @@ rclone delete remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone deletefile"
|
title: "rclone deletefile"
|
||||||
slug: rclone_deletefile
|
slug: rclone_deletefile
|
||||||
url: /commands/rclone_deletefile/
|
url: /commands/rclone_deletefile/
|
||||||
@@ -64,13 +64,13 @@ rclone deletefile remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -95,8 +95,8 @@ rclone deletefile remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -128,6 +128,7 @@ rclone deletefile remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -142,7 +143,7 @@ rclone deletefile remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -155,6 +156,7 @@ rclone deletefile remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -207,7 +209,7 @@ rclone deletefile remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -217,18 +219,21 @@ rclone deletefile remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -289,7 +294,7 @@ rclone deletefile remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -298,10 +303,11 @@ rclone deletefile remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone genautocomplete"
|
title: "rclone genautocomplete"
|
||||||
slug: rclone_genautocomplete
|
slug: rclone_genautocomplete
|
||||||
url: /commands/rclone_genautocomplete/
|
url: /commands/rclone_genautocomplete/
|
||||||
@@ -59,13 +59,13 @@ Run with --help to list the supported shells.
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -90,8 +90,8 @@ Run with --help to list the supported shells.
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -123,6 +123,7 @@ Run with --help to list the supported shells.
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -137,7 +138,7 @@ Run with --help to list the supported shells.
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -150,6 +151,7 @@ Run with --help to list the supported shells.
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -202,7 +204,7 @@ Run with --help to list the supported shells.
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -212,18 +214,21 @@ Run with --help to list the supported shells.
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -284,7 +289,7 @@ Run with --help to list the supported shells.
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -293,6 +298,7 @@ Run with --help to list the supported shells.
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
@@ -301,4 +307,4 @@ Run with --help to list the supported shells.
|
|||||||
* [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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -75,13 +75,13 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -106,8 +106,8 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -139,6 +139,7 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -153,7 +154,7 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -166,6 +167,7 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -218,7 +220,7 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -228,18 +230,21 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -300,7 +305,7 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -309,10 +314,11 @@ rclone genautocomplete bash [output_file] [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
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/
|
||||||
@@ -75,13 +75,13 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -106,8 +106,8 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -139,6 +139,7 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -153,7 +154,7 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -166,6 +167,7 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -218,7 +220,7 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -228,18 +230,21 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -300,7 +305,7 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -309,10 +314,11 @@ rclone genautocomplete zsh [output_file] [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### 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 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone gendocs"
|
title: "rclone gendocs"
|
||||||
slug: rclone_gendocs
|
slug: rclone_gendocs
|
||||||
url: /commands/rclone_gendocs/
|
url: /commands/rclone_gendocs/
|
||||||
@@ -63,13 +63,13 @@ rclone gendocs output_directory [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone gendocs output_directory [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone gendocs output_directory [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone gendocs output_directory [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone gendocs output_directory [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone gendocs output_directory [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone gendocs output_directory [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone gendocs output_directory [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone gendocs output_directory [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone hashsum"
|
title: "rclone hashsum"
|
||||||
slug: rclone_hashsum
|
slug: rclone_hashsum
|
||||||
url: /commands/rclone_hashsum/
|
url: /commands/rclone_hashsum/
|
||||||
@@ -77,13 +77,13 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -108,8 +108,8 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -141,6 +141,7 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -155,7 +156,7 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -168,6 +169,7 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -220,7 +222,7 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -230,18 +232,21 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -302,7 +307,7 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -311,10 +316,11 @@ rclone hashsum <hash> remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone link"
|
title: "rclone link"
|
||||||
slug: rclone_link
|
slug: rclone_link
|
||||||
url: /commands/rclone_link/
|
url: /commands/rclone_link/
|
||||||
@@ -70,13 +70,13 @@ rclone link remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -101,8 +101,8 @@ rclone link remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -134,6 +134,7 @@ rclone link remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -148,7 +149,7 @@ rclone link remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -161,6 +162,7 @@ rclone link remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -213,7 +215,7 @@ rclone link remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -223,18 +225,21 @@ rclone link remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -295,7 +300,7 @@ rclone link remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -304,10 +309,11 @@ rclone link remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone listremotes"
|
title: "rclone listremotes"
|
||||||
slug: rclone_listremotes
|
slug: rclone_listremotes
|
||||||
url: /commands/rclone_listremotes/
|
url: /commands/rclone_listremotes/
|
||||||
@@ -65,13 +65,13 @@ rclone listremotes [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -96,8 +96,8 @@ rclone listremotes [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -129,6 +129,7 @@ rclone listremotes [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -143,7 +144,7 @@ rclone listremotes [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -156,6 +157,7 @@ rclone listremotes [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -208,7 +210,7 @@ rclone listremotes [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -218,18 +220,21 @@ rclone listremotes [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -290,7 +295,7 @@ rclone listremotes [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -299,10 +304,11 @@ rclone listremotes [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone ls"
|
title: "rclone ls"
|
||||||
slug: rclone_ls
|
slug: rclone_ls
|
||||||
url: /commands/rclone_ls/
|
url: /commands/rclone_ls/
|
||||||
@@ -94,13 +94,13 @@ rclone ls remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -125,8 +125,8 @@ rclone ls remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -158,6 +158,7 @@ rclone ls remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -172,7 +173,7 @@ rclone ls remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -185,6 +186,7 @@ rclone ls remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -237,7 +239,7 @@ rclone ls remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -247,18 +249,21 @@ rclone ls remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -319,7 +324,7 @@ rclone ls remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -328,10 +333,11 @@ rclone ls remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone lsd"
|
title: "rclone lsd"
|
||||||
slug: rclone_lsd
|
slug: rclone_lsd
|
||||||
url: /commands/rclone_lsd/
|
url: /commands/rclone_lsd/
|
||||||
@@ -105,13 +105,13 @@ rclone lsd remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -136,8 +136,8 @@ rclone lsd remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -169,6 +169,7 @@ rclone lsd remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -183,7 +184,7 @@ rclone lsd remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -196,6 +197,7 @@ rclone lsd remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -248,7 +250,7 @@ rclone lsd remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -258,18 +260,21 @@ rclone lsd remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -330,7 +335,7 @@ rclone lsd remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -339,10 +344,11 @@ rclone lsd remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone lsf"
|
title: "rclone lsf"
|
||||||
slug: rclone_lsf
|
slug: rclone_lsf
|
||||||
url: /commands/rclone_lsf/
|
url: /commands/rclone_lsf/
|
||||||
@@ -183,13 +183,13 @@ rclone lsf remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -214,8 +214,8 @@ rclone lsf remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -247,6 +247,7 @@ rclone lsf remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -261,7 +262,7 @@ rclone lsf remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -274,6 +275,7 @@ rclone lsf remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -326,7 +328,7 @@ rclone lsf remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -336,18 +338,21 @@ rclone lsf remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -408,7 +413,7 @@ rclone lsf remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -417,10 +422,11 @@ rclone lsf remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone lsjson"
|
title: "rclone lsjson"
|
||||||
slug: rclone_lsjson
|
slug: rclone_lsjson
|
||||||
url: /commands/rclone_lsjson/
|
url: /commands/rclone_lsjson/
|
||||||
@@ -123,13 +123,13 @@ rclone lsjson remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -154,8 +154,8 @@ rclone lsjson remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -187,6 +187,7 @@ rclone lsjson remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -201,7 +202,7 @@ rclone lsjson remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -214,6 +215,7 @@ rclone lsjson remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -266,7 +268,7 @@ rclone lsjson remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -276,18 +278,21 @@ rclone lsjson remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -348,7 +353,7 @@ rclone lsjson remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -357,10 +362,11 @@ rclone lsjson remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone lsl"
|
title: "rclone lsl"
|
||||||
slug: rclone_lsl
|
slug: rclone_lsl
|
||||||
url: /commands/rclone_lsl/
|
url: /commands/rclone_lsl/
|
||||||
@@ -94,13 +94,13 @@ rclone lsl remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -125,8 +125,8 @@ rclone lsl remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -158,6 +158,7 @@ rclone lsl remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -172,7 +173,7 @@ rclone lsl remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -185,6 +186,7 @@ rclone lsl remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -237,7 +239,7 @@ rclone lsl remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -247,18 +249,21 @@ rclone lsl remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -319,7 +324,7 @@ rclone lsl remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -328,10 +333,11 @@ rclone lsl remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone md5sum"
|
title: "rclone md5sum"
|
||||||
slug: rclone_md5sum
|
slug: rclone_md5sum
|
||||||
url: /commands/rclone_md5sum/
|
url: /commands/rclone_md5sum/
|
||||||
@@ -63,13 +63,13 @@ rclone md5sum remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -94,8 +94,8 @@ rclone md5sum remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -127,6 +127,7 @@ rclone md5sum remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -141,7 +142,7 @@ rclone md5sum remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -154,6 +155,7 @@ rclone md5sum remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -206,7 +208,7 @@ rclone md5sum remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -216,18 +218,21 @@ rclone md5sum remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -288,7 +293,7 @@ rclone md5sum remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -297,10 +302,11 @@ rclone md5sum remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone mkdir"
|
title: "rclone mkdir"
|
||||||
slug: rclone_mkdir
|
slug: rclone_mkdir
|
||||||
url: /commands/rclone_mkdir/
|
url: /commands/rclone_mkdir/
|
||||||
@@ -60,13 +60,13 @@ rclone mkdir remote:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -91,8 +91,8 @@ rclone mkdir remote:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -124,6 +124,7 @@ rclone mkdir remote:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -138,7 +139,7 @@ rclone mkdir remote:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -151,6 +152,7 @@ rclone mkdir remote:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -203,7 +205,7 @@ rclone mkdir remote:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -213,18 +215,21 @@ rclone mkdir remote:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -285,7 +290,7 @@ rclone mkdir remote:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -294,10 +299,11 @@ rclone mkdir remote:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone mount"
|
title: "rclone mount"
|
||||||
slug: rclone_mount
|
slug: rclone_mount
|
||||||
url: /commands/rclone_mount/
|
url: /commands/rclone_mount/
|
||||||
@@ -90,7 +90,7 @@ 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. Look at the [file caching](#file-caching)
|
uploads. Look at the [file caching](#file-caching)
|
||||||
for solutions to make mount mount more reliable.
|
for solutions to make mount more reliable.
|
||||||
|
|
||||||
### Attribute caching
|
### Attribute caching
|
||||||
|
|
||||||
@@ -360,13 +360,13 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -391,8 +391,8 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -424,6 +424,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -438,7 +439,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -451,6 +452,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -503,7 +505,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -513,18 +515,21 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -585,7 +590,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -594,10 +599,11 @@ rclone mount remote:path /path/to/mountpoint [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
date: 2018-10-15T11:00:47+01:00
|
date: 2018-11-24T13:43:29Z
|
||||||
title: "rclone move"
|
title: "rclone move"
|
||||||
slug: rclone_move
|
slug: rclone_move
|
||||||
url: /commands/rclone_move/
|
url: /commands/rclone_move/
|
||||||
@@ -30,6 +30,8 @@ If you want to delete empty source directories after move, use the --delete-empt
|
|||||||
**Important**: Since this can cause data loss, test first with the
|
**Important**: Since this can cause data loss, test first with the
|
||||||
--dry-run flag.
|
--dry-run flag.
|
||||||
|
|
||||||
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics.
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
rclone move source:path dest:path [flags]
|
rclone move source:path dest:path [flags]
|
||||||
@@ -80,13 +82,13 @@ rclone move source:path dest:path [flags]
|
|||||||
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
--bwlimit BwTimetable Bandwidth limit in kBytes/s, or use suffix b|k|M|G or a full timetable.
|
||||||
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
--cache-chunk-clean-interval Duration How often should the cache perform cleanups of the chunk storage. (default 1m0s)
|
||||||
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
--cache-chunk-no-memory Disable the in-memory cache for storing chunks during streaming.
|
||||||
--cache-chunk-path string Directory to cache chunk files. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-chunk-path string Directory to cache chunk files. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
--cache-chunk-size SizeSuffix The size of a chunk (partial file data). (default 5M)
|
||||||
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
--cache-chunk-total-size SizeSuffix The total size that the chunks can take up on the local disk. (default 10G)
|
||||||
--cache-db-path string Directory to store file structure metadata DB. (default "/home/ncw/.cache/rclone/cache-backend")
|
--cache-db-path string Directory to store file structure metadata DB. (default "$HOME/.cache/rclone/cache-backend")
|
||||||
--cache-db-purge Clear all the cached data for this remote on start.
|
--cache-db-purge Clear all the cached data for this remote on start.
|
||||||
--cache-db-wait-time Duration How long to wait for the DB to be available - 0 is unlimited (default 1s)
|
--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/.cache/rclone")
|
||||||
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
--cache-info-age Duration How long to cache file structure information (directory listings, file size, times etc). (default 6h0m0s)
|
||||||
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
--cache-plex-insecure string Skip all certificate verifications when connecting to the Plex server
|
||||||
--cache-plex-password string The password of the Plex user
|
--cache-plex-password string The password of the Plex user
|
||||||
@@ -111,8 +113,8 @@ rclone move source:path dest:path [flags]
|
|||||||
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
--crypt-password2 string Password or pass phrase for salt. Optional but recommended.
|
||||||
--crypt-remote string Remote to encrypt/decrypt.
|
--crypt-remote string Remote to encrypt/decrypt.
|
||||||
--crypt-show-mapping For all files listed show how the names encrypt.
|
--crypt-show-mapping For all files listed show how the names encrypt.
|
||||||
--delete-after When synchronizing, delete files on destination after transfering (default)
|
--delete-after When synchronizing, delete files on destination after transferring (default)
|
||||||
--delete-before When synchronizing, delete files on destination before transfering
|
--delete-before When synchronizing, delete files on destination before transferring
|
||||||
--delete-during When synchronizing, delete files during transfer
|
--delete-during When synchronizing, delete files during transfer
|
||||||
--delete-excluded Delete files on dest excluded from sync
|
--delete-excluded Delete files on dest excluded from sync
|
||||||
--disable string Disable a comma separated list of features. Use help to see a list.
|
--disable string Disable a comma separated list of features. Use help to see a list.
|
||||||
@@ -144,6 +146,7 @@ rclone move source:path dest:path [flags]
|
|||||||
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
--dropbox-chunk-size SizeSuffix Upload chunk size. (< 150M). (default 48M)
|
||||||
--dropbox-client-id string Dropbox App Client Id
|
--dropbox-client-id string Dropbox App Client Id
|
||||||
--dropbox-client-secret string Dropbox App Client Secret
|
--dropbox-client-secret string Dropbox App Client Secret
|
||||||
|
--dropbox-impersonate string Impersonate this user when using a business account.
|
||||||
-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: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
--dump string List of items to dump from: headers,bodies,requests,responses,auth,filters,goroutines,openfiles
|
||||||
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
--dump-bodies Dump HTTP headers and bodies - may contain sensitive info
|
||||||
@@ -158,7 +161,7 @@ rclone move source:path dest:path [flags]
|
|||||||
--ftp-host string FTP host to connect to
|
--ftp-host string FTP host to connect to
|
||||||
--ftp-pass string FTP password
|
--ftp-pass string FTP password
|
||||||
--ftp-port string FTP port, leave blank to use default (21)
|
--ftp-port string FTP port, leave blank to use default (21)
|
||||||
--ftp-user string FTP username, leave blank for current username, ncw
|
--ftp-user string FTP username, leave blank for current username, $USER
|
||||||
--gcs-bucket-acl string Access Control List for new buckets.
|
--gcs-bucket-acl string Access Control List for new buckets.
|
||||||
--gcs-client-id string Google Application Client Id
|
--gcs-client-id string Google Application Client Id
|
||||||
--gcs-client-secret string Google Application Client Secret
|
--gcs-client-secret string Google Application Client Secret
|
||||||
@@ -171,6 +174,7 @@ rclone move source:path dest:path [flags]
|
|||||||
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
--hubic-chunk-size SizeSuffix Above this size files will be chunked into a _segments container. (default 5G)
|
||||||
--hubic-client-id string Hubic Client Id
|
--hubic-client-id string Hubic Client Id
|
||||||
--hubic-client-secret string Hubic Client Secret
|
--hubic-client-secret string Hubic Client Secret
|
||||||
|
--ignore-case Ignore case in filters (case insensitive)
|
||||||
--ignore-checksum Skip post copy check of checksums.
|
--ignore-checksum Skip post copy check of checksums.
|
||||||
--ignore-errors delete even if there are I/O errors
|
--ignore-errors delete even if there are I/O errors
|
||||||
--ignore-existing Skip all files that exist on destination
|
--ignore-existing Skip all files that exist on destination
|
||||||
@@ -223,7 +227,7 @@ rclone move source:path dest:path [flags]
|
|||||||
--pcloud-client-secret string Pcloud App Client Secret
|
--pcloud-client-secret string Pcloud App Client Secret
|
||||||
-P, --progress Show progress during transfer.
|
-P, --progress Show progress during transfer.
|
||||||
--qingstor-access-key-id string QingStor Access Key ID
|
--qingstor-access-key-id string QingStor Access Key ID
|
||||||
--qingstor-connection-retries int Number of connnection retries. (default 3)
|
--qingstor-connection-retries int Number of connection retries. (default 3)
|
||||||
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
--qingstor-endpoint string Enter a endpoint URL to connection QingStor API.
|
||||||
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
--qingstor-env-auth Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
|
||||||
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
--qingstor-secret-access-key string QingStor Secret Access Key (password)
|
||||||
@@ -233,18 +237,21 @@ rclone move source:path dest:path [flags]
|
|||||||
--rc-addr string IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
--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-cert string SSL PEM key (concatenation of certificate and CA certificate)
|
||||||
--rc-client-ca string Client certificate authority to verify clients with
|
--rc-client-ca string Client certificate authority to verify clients with
|
||||||
|
--rc-files string Path to local files to serve on the HTTP server.
|
||||||
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
--rc-htpasswd string htpasswd file - if not provided no authentication is done
|
||||||
--rc-key string SSL PEM Private key
|
--rc-key string SSL PEM Private key
|
||||||
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
--rc-max-header-bytes int Maximum size of request header (default 4096)
|
||||||
|
--rc-no-auth Don't require auth for certain methods.
|
||||||
--rc-pass string Password for authentication.
|
--rc-pass string Password for authentication.
|
||||||
--rc-realm string realm for authentication (default "rclone")
|
--rc-realm string realm for authentication (default "rclone")
|
||||||
|
--rc-serve Enable the serving of remote objects.
|
||||||
--rc-server-read-timeout duration Timeout for server reading data (default 1h0m0s)
|
--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-server-write-timeout duration Timeout for server writing data (default 1h0m0s)
|
||||||
--rc-user string User name for authentication.
|
--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)
|
||||||
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
--retries-sleep duration Interval between retrying operations if they fail, e.g 500ms, 60s, 5m. (0 to disable)
|
||||||
--s3-access-key-id string AWS Access Key ID.
|
--s3-access-key-id string AWS Access Key ID.
|
||||||
--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 storing or copying objects.
|
||||||
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
--s3-chunk-size SizeSuffix Chunk size to use for uploading. (default 5M)
|
||||||
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
--s3-disable-checksum Don't store MD5 checksum with object metadata
|
||||||
--s3-endpoint string Endpoint for S3 API.
|
--s3-endpoint string Endpoint for S3 API.
|
||||||
@@ -305,7 +312,7 @@ rclone move source:path dest:path [flags]
|
|||||||
--union-remotes string List of space separated remotes.
|
--union-remotes string List of space separated remotes.
|
||||||
-u, --update Skip files that are newer on the destination.
|
-u, --update Skip files that are newer on the destination.
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.44")
|
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.45")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
--webdav-bearer-token string Bearer token instead of user/pass (eg a Macaroon)
|
||||||
--webdav-pass string Password.
|
--webdav-pass string Password.
|
||||||
@@ -314,10 +321,11 @@ rclone move source:path dest:path [flags]
|
|||||||
--webdav-vendor string Name of the Webdav site/service/software you are using
|
--webdav-vendor string Name of the Webdav site/service/software you are using
|
||||||
--yandex-client-id string Yandex Client Id
|
--yandex-client-id string Yandex Client Id
|
||||||
--yandex-client-secret string Yandex Client Secret
|
--yandex-client-secret string Yandex Client Secret
|
||||||
|
--yandex-unlink Remove existing public link to file/folder with link command rather than creating.
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
||||||
|
|
||||||
###### Auto generated by spf13/cobra on 15-Oct-2018
|
###### Auto generated by spf13/cobra on 24-Nov-2018
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user