2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/rclone

20 lines
427 B
Plaintext
Raw Normal View History

2020-11-17 19:28:44 +00:00
# rclone
# A command line tool, similar to rsync, with the difference that it can sync,
# move, copy, and in general do other file operations on cloud services.
2018-01-12 10:13:32 +00:00
# Config rclone
rclone config
# Lists a re
rclone ls remote:path
# Copy /local/path to the remote
rclone copy /local/path remote:path
# Sync /local/path to the remote
rclone sync /local/path remote:path
2018-01-12 10:13:32 +00:00
# Server side Copy
rclone copy s3:oldbucket s3:newbucket