A command line tool for moving all files under one directory to another, override conflict files in the destination directory (merge two directories)
Equivalent of rsync -ahHAXW --remove-source-files dir1/ dir2/
crew-mvdir
use rename()
syscall to move files (instead of copying-deleting), that's why it is faster than rsync
./crew-mvdir [-c] [-n] [-v] [src] [dst]
-c: force copying-deleting instead of renaming (moving) the file
-n: do not overwrite an existing file (no clobber)
-v: enable verbose mode
--version: print version and exit
make && make install
Copyright (C) 2013-2025 Chromebrew Authors
This project including all of its source files is released under the terms of GNU General Public License (version 3 or later).