2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/rclone
terminalforlife d7473ac185 Fix trailing whitespace on all files
Tidy files; tidy soul!
2020-02-22 02:47:54 +00:00

19 lines
427 B
Plaintext

# rclone is 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
# 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
# Server side Copy
rclone copy s3:oldbucket s3:newbucket