rclone
Copy, synchronize, or move files and directories to and from many cloud services.
More info →Options (3)
-i, --interactivebooleanCopy files changed within the past 24 hours to a remote from the local machine, asking the user to confirm each file
rclone copy {{[-i|--interactive]}} --max-age 24h {{remote_name}}:{{path/to/directory}} {{path/to/local_directory}}-n, --dry-runbooleanDelete a remote file or directory (Note: `--dry-run` means test, remove it from the command to actually delete)
rclone {{[-n|--dry-run]}} delete {{remote_name}}:{{path/to/file_or_directory}}-u, --updatebooleanUnmount rclone remote if `<Ctrl c>` fails (experimental)
fusermount {{[-u|--update]}} {{path/to/mount_point}}Examples (8)
Launch an interactive menu to setup rclone
rclone configList contents of a directory on an rclone remote
rclone lsf remote_name:path/to/directoryCopy a file or directory from the local machine to the remote destination
rclone copy path/to/source_file_or_directory remote_name:path/to/directoryCopy files changed within the past 24 hours to a remote from the local machine, asking the user to confirm each file
rclone copy [-i|--interactive] --max-age 24h remote_name:path/to/directory path/to/local_directoryMirror a specific file or directory (Note: Unlike copy, sync removes files from the remote if it does not exist locally)
Delete a remote file or directory (Note: `--dry-run` means test, remove it from the command to actually delete)
rclone [-n|--dry-run] delete remote_name:path/to/file_or_directoryUnmount rclone remote if `<Ctrl c>` fails (experimental)
fusermount [-u|--update] path/to/mount_point