You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rsync is needed while moving or copying directories to allow merging of directories with the same name. To accomplish this with mv, it would need to execute mv once for every file to preserve directory hierarchy, compared to a single execution of rsync with the entire list of files. It is true that rsync is slower than mv while moving within the same file system though, as mv just renames files and rsync fully copies them and deletes the originals. I may try to implement having it default to renaming files and only falling back to rsync if the move is determined to be across filesystems at some point, so I'll keep this open until then.
when i just want to move with cut/paste, it takes too long.
i checked top, it used rsync.
why dont use mv?
The text was updated successfully, but these errors were encountered: