Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

Running rclone move with Progress

To display progress while using the rclone move command, use the --progress flag. This will provide real-time updates on the transfer process.

Basic Usage:

rclone move source_path remote:destination_path --progress

Breakdown:

Example:

rclone move /path/to/local/files mydrive:/backup --progress

Additional Options:

You can combine the --progress flag with other useful options:

Example with additional options:

rclone move /path/to/local/files mydrive:/backup --progress -v --delete-empty-src-dirs --transfers 4 --max-transfer 100M

Tips: