Rclone is a command line program to manage files on cloud storage. It is a feature rich alternative to cloud vendors' web storage interfaces. Over 40 cloud storage products support rclone including S3 object stores, business & consumer file storage services, as well as standard transfer protocols.
Version | module name |
---|
1.53.3 | rclone/1.53.3 |
...
Code Block |
---|
language | bash |
---|
title | Enter q to quit configuration |
---|
|
Current remotes:
Name Type
==== ====
dropbox dropbox
lugdrive drive
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> q |
Usage
Please visit the rclone website for usage documentation. Some commonly used command are:
Code Block |
---|
language | bash |
---|
title | Get list of configured remotes |
---|
|
rclone list remotes |
Code Block |
---|
language | bash |
---|
title | List contents of remote directory |
---|
|
rclone ls remote:directory |
Code Block |
---|
language | bash |
---|
title | create a remote directory (including intermediate directories if they do not exist) |
---|
|
rclone mkdir remote:directory/new_directory |
Code Block |
---|
language | bash |
---|
title | copy files to remote (source can also be another remote) |
---|
|
rclone copy source:path remote:directory/new_directory |
Code Block |
---|
language | bash |
---|
title | delete a remote file or directory |
---|
|
rclone delete remote:directory/filename |
Code Block |
---|
language | bash |
---|
title | delete a directory |
---|
|
rclone rmdir remote:directory/new_directory
# use rmdirs to delete intermediate empty directories |