-
-
Save etng/3431d46652756ea005d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # replace rm command with mv to Trash to protect remove files or directory miss | |
| function __protect_rm { | |
| mv ${@: -1} ~/.Trash #get last function argument | |
| } | |
| alias rm='__protect_rm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment