Crates.io | move-links |
lib.rs | move-links |
version | 0.1.1 |
source | src |
created_at | 2021-02-26 21:49:41.935557 |
updated_at | 2021-03-05 21:23:48.274659 |
description | 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) |
homepage | |
repository | |
max_upload_size | |
id | 361095 |
size | 19,005 |
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 <version>
Ben Mefteh F. <benmeft0@gmail.com>
Move (or rename) SOURCE to DEST, and redirect all ot its symbolic links inside of LINKS_DIRECTORY
USAGE:
mvl <SOURCE> <DEST> --links-dir <LINKS_DIRECTORY>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-d, --links-dir <LINKS_DIRECTORY> Directory in which to search for symbolic links of SOURCE
ARGS:
<SOURCE> Source file or directory
<DEST> Destination (output) file or directory
Move Links works under the hood by calling three commands:
find
for finding the SOURCE symbolic linksln
for redirecting the existing symbolic links to DESTmv
for moving SOURCE to DESTUsing cargo:
cargo install move-links