dotfiles/zsh/custom/plugins/trash/trash.plugin.zsh

8 lines
90 B
Bash
Raw Normal View History

2018-06-27 15:06:19 +00:00
function trash {
if [[ -z "$1" ]]; then
trash-list
else
trash-put "$@"
fi
}