CLI utility to move (or rename) your files to a new location and redirect all of its symbolic links, to the new path (or name).
executing
mvl --help
to show the help message
```
Move Links
USAGE:
mvl
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-d, --links-dir
ARGS:
Move Links works under the hood by calling three commands:
- find
for finding the SOURCE symbolic links
- ln
for redirecting the existing symbolic links to DEST
- And finally mv
for moving SOURCE to DEST
Using cargo:
cargo install move-links