Multiplatform drop in replacement for GNU rm
with extra features
This project is a close port of GNU rm
. The idea is extending the functionality around rm
API and bring some niceties with improved performance, specially for large files and deeply nested directories.
rm
api-t
)Benches are defined here
cargo bench
| remove | rmx | rm | rmt | |----------------------------|-----|----|-------| | files |5.7739ms|14.121ms|7.2263ms| | recursively nested folders |5.7798ms|14.128ms|7.3677ms| | multiple deeply nested folders |5.2066ms|14.669ms|7.2347ms| | multiple deeply nested folders (rip mode) |4.6359ms|14.160ms|7.5436ms|
numbers obtained on a XPS 13 9300, at commit: 7929f6
rmx --rip node_modules
rmx file1 file2 -t
rmx --follow-links link
rm
usagermx --one-file-system -i *.txt
handles more glob matching args, rm
panics at ~10k+ matches`rmx --preserve-root=/home --interactive=once /home/*/*
rmx --verbose -rf --no-preserve-root /
Currently only obtainable via crates.io and this repo.
cargo install rmx
AUR (soon)
Prebuilt binaries (soon)
Put in your favorite Shell rc file:
alias rm='rmx'
rm
and the underlying system calls are not the same.rmx
improves the computation load. I/O might still be your biggest bottleneck.