rmtrash
rmtrash copied to clipboard
Put files (and directories) in trash using the `trash-put` command in a way that is, otherwise as `trash-put` itself, compatible to GNUs `rm` and `rmdir`
rmtrash 1.14
Put files (and directories) in trash using the trash-put command from trash-cli, in a way that (unlike trash-put itself) is compatible with GNU's rm and rmdir.
Installation
Just download both scriptfiles (rmtrash and rmdirtrash) and put them in /usr/local/bin. If you're using Arch Linux, you can also use the AUR package. On macOS, you must install the gnu-getopt and coreutils packages using Homebrew.
If you don't want to readjust the usage of rm and rmdir, a bash alias is probably a great solution for you. Just add the lines
alias rm='rmtrash'
alias rmdir='rmdirtrash'
alias sudo='sudo '
to your ~/.bashrc (or ~/.bash_aliases). Consider adding the --forbid-root option (see replacement option below)! The last line is optional, without you'll notice that rmtrash and rmdirtrash won't be called when using sudo.
Requirements
Obviously trash-cli (to provide the trash-put or trash command) is required. rmtrash and rmdirtrash should work great with any distribution. If rmtrash or rmdirtrash doesn't work with your favourite distribution, please file a bug report. It was written to work with bash.
You wanna make rmtrash and rmdirtrash work with your favorite distribution or improve them in general? Go on, I appreciate it!
Usage of rmtrash
rmtrash [OPTION]... [FILE...]
rmtrash supports everything that GNU's rm does, that means it accepts the following options (see --help):
-
Help options:
--help: display help and exit--version: output version information and exit
-
Application options:
-f,--force: ignore nonexistent files, never prompt-i: prompt before every removal-I: prompt once before removing more than three files, or when removing recursively. Less intrusive than-i, while still giving protection against most mistakes--interactive[=WHEN]: prompt according to WHEN:never,once(-I), oralways(-i). Without WHEN, prompt always--one-file-system: when removing a hierarchy recursively, skip any directory that is on a file system different from that of the corresponding command line argument--no-preserve-root: do not treat/specially--preserve-root: do not remove/(default)-d,--dir: remove empty directories-r,-R,--recursive: remove directories and their contents recursively-v,--verbose: explain what is being done
Usage of rmdirtrash
rmdirtrash [OPTION]... [DIRECTORY...]
rmdirtrash supports everything that GNU's rmdir does, that means it accepts the following options (see --help):
-
Help options:
--help: display help and exit--version: output version information and exit
-
Application options:
--ignore-fail-on-non-empty: ignore each failure that is solely because a directory is non-empty-p,--parents: remove DIRECTORY and its ancestors; e.g.,rmdirtrash -p a/b/cis similar tormdirtrash a/b/c a/b a-v,--verbose: output a diagnostic for every directory processed
Replacement option
This option is not supposed to be used when calling rmtrash resp. rmdirtrash. It helps you to control how and in which cases rm resp. rmdir are replaced. Without --forbid-root, root isn't treated specially.
--forbid-root[=HOW]: forbid userrootto trash files. When standard input is a terminal,ask-forbidandask-passwill question the user to pass the command to/bin/rm. When standard input is no terminal,ask-forbidwill abort the command, whereasask-passwill pass the command to/bin/rm. Usepassto pass all commands of userrootto/bin/rmwithout a query. If userrootshould never trash files, usealways. In contrast,nevertreatsrootin no special way. WithoutHOW,ask-forbidis assumed
Additional Notes
For additional information, see the trash-list (or list-trash), trash-empty (or empty-trash), trash-restore (or restore-trash) and trash-rm commands provided by trash-cli, as well as the FreeDesktop.org Trash Specification. Note trash-put --help (or trash --help) and rm --help, too.
A important note about execution time:
rmtrash is pretty slow! Because we're indexing all containing files before actually building the trash command (and because it's just a shell script), it is pretty slow when trashing many files. If you want to remove a very large directory (in terms of many files), consider using trash-put or rm directly. Never name rmtrashs scriptfile rm - this will replace rm and is definitly not what you actually want! Use a bash alias as described above. The same applies to rmdirtrash.
Typically you won't notice a time delay when using rmtrash and rmdirtrash, but now you know that there is a time delay...
License & Copyright
Copyright (C) 2011-2020 Daniel Rudolf https://www.daniel-rudolf.de/
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License only.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.