Move files and folders to the trash
trash
is a command-line application for moving files and folders into the trash. A safer alternative to rm
.
sh
trash README.md # move README.md to the trash
trash "*.md" # move all files ending in .md in the current direcory to the trash
trash src install.sh # move src folder and install.sh file to the trash
Trash works across all major platforms. You can directly install the binary from GitHub:
sh
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/JakeChampion/trash/master/install.sh | sh
If you would rather not run a script, you can download the binary from the Releases page and add it to your PATH
environment variable.
If you have Rust and Cargo install you can install Trash from source:
sh
cargo install trash-it