tldr/pages/common/rclone.md

37 lines
1.2 KiB
Markdown
Raw Normal View History

2019-01-29 03:29:54 +00:00
# rclone
> CLI program to copy/sync/move files and directories to and from many cloud services.
> More information: <https://rclone.org>.
2019-01-29 03:29:54 +00:00
- List contents of a directory on an rclone remote:
2019-01-29 03:29:54 +00:00
`rclone lsf {{remote_name}}:{{path/to/directory}}`
2019-01-29 03:29:54 +00:00
- Copy file or directory from local source to remote destination:
2019-01-29 03:29:54 +00:00
`rclone copy {{path/to/source_file_or_directory}} {{remote_name}}:{{path/to/destination_directory}}`
2019-01-29 03:29:54 +00:00
- Copy file or directory from remote source to local destination:
2019-01-29 03:29:54 +00:00
`rclone copy {{remote_name}}:{{path/to/source_file_or_directory}} {{path/to/destination_directory}}`
2019-01-29 03:29:54 +00:00
- Sync local source to remote destination, changing the destination only:
`rclone sync {{path/to/file_or_directory}} {{remote_name}}:{{path/to/directory}}`
2019-01-29 03:29:54 +00:00
- Move file or directory from local source to remote destination:
2019-01-29 03:29:54 +00:00
`rclone move {{path/to/file_or_directory}} {{remote_name}}:{{path/to/directory}}`
2019-01-29 03:29:54 +00:00
- Delete remote file or directory (use `--dry-run` to test, remove it to actually delete):
2019-01-29 03:29:54 +00:00
`rclone --dry-run delete {{remote_name}}:{{path/to/file_or_directory}}`
2019-01-29 03:29:54 +00:00
- Mount rclone remote (experimental):
`rclone mount {{remote_name}}:{{path/to/directory}} {{path/to/mount_point}}`
2019-01-29 03:29:54 +00:00
- Unmount rclone remote if CTRL-C fails (experimental):
`fusermount -u {{path/to/mount_point}}`