dotfiles/.config/fish/functions/rm.fish

9 lines
177 B
Fish
Raw Normal View History

2020-12-24 10:30:03 +00:00
function rm --wraps=trash --description 'alias rm=trash'
if command -sq trash
trash $argv;
else
set rmpath (which rm)
$rmpath $argv;
end
2020-12-24 10:30:03 +00:00
end