8 lines
167 B
Fish
8 lines
167 B
Fish
function du --wraps=dust --description 'alias to dust If dust not present executes du'
|
|
if type -q -f dust
|
|
dust $argv
|
|
else
|
|
du $argv
|
|
end
|
|
end
|