In a GUI environment, a drag-and-drop with replace will replace files and entire directories (including contents) with whatever is being copied in. Is there a way to accomplish this same intuitive result with the 'mv' command?
|
Not with The core function of (Never mind that Enough philosophy. If you want to recursively move ("drag-drop") a tree from one place to another on the same filesystem, you can get the efficiency and speed of
The The |
|||
|
|
|
Will move everything in /path/to/source/folder, including files and directories to /destination/folder. And will overwrite existing files and directories. |
|||||
|
|
I don't think you can replicate the drag-drop behavior you're describing with Perhaps |
|||
|
|
|
You're probably going to want to change the correct answer to this: https://github.com/iaindooley/pickdrop Example: say I have:
and I want to move these things to /site so it looks like:
I can go:
This is literally cut & paste. |
|||||
|