Wouldn't it be great if the mv command had an option to leave a symbolic link in the file's original location?

Posted by cdokme@reddit | linux | View on Reddit | 20 comments

For example, running mv --create-link /tmp/file ~/ would move the actual file to ~/file, but leave a symlink at /tmp/file -> ~/file. What do you guys think?

I saw a proper implementation of this approach in Bash, but I think this behavior should be embed into the original mv command.