Skip to content

Instantly share code, notes, and snippets.

@sangar82
Forked from aqualungdesign/gist:4612606
Last active August 29, 2015 14:21
Show Gist options
  • Save sangar82/f6de057ef50a026fff96 to your computer and use it in GitHub Desktop.
Save sangar82/f6de057ef50a026fff96 to your computer and use it in GitHub Desktop.
#add script to .oh-my-zsh/lib/functions.zsh
function rm () {
local path
for path in "$@"; do
# ignore any arguments
if [[ "$path" = -* ]]; then :
else
local dst=${path##*/}
# append the time if necessary
while [ -e ~/.Trash/"$dst" ]; do
dst="$dst "$(date +%H-%M-%S)
done
/bin/mv "$path" ~/.Trash/"$dst"
fi
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment