dotfiles/.config/fish/functions/du.fish

7 lines
103 B
Fish

function du
if type -q duf
command duf $argv
else
command du $argv
end
end