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

8 lines
103 B
Fish
Raw Normal View History

2025-03-02 14:26:08 +01:00
function du
if type -q duf
command duf $argv
else
command du $argv
end
end