LinuxCommandLibrary

trashy

An alternative to `rm` and `trash-cli` written in Rust.

TLDR

Move a specific file to the trash

$ trash [path/to/file]
copy


Move specific files to the trash
$ trash [path/to/file1 path/to/file2 ...]
copy


List items in the trash
$ trash list
copy


Restore a specific file from the trash
$ trash restore [file]
copy


Remove a specific file from the trash
$ trash empty [file]
copy


Restore all files from the trash
$ trash restore --all
copy


Remove all files from the trash
$ trash empty --all
copy

Copied to clipboard