Which cloud storage system are you using? (eg Google Drive)
Local file system
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone copy /src /dst -P
N/A
Not really a bug, more of a question. When using rclone copy, and not using the --inplace flag, rclone writes .tmp files until the copy is done then renames. If you ctrl-c mid copy, the partially copied tmp files remain in the destination. Is there any flag or way to cancel a copy operation that will allow rclone to clean up/delete any temp files that are not completed? Thanks in advance.
Insert your rclone copy into a script where you trap ctrl-c or/and errors and run rclone delete with some filter (e.g. --include "*.tmp") when your trap is triggered.