This commit is contained in:
2026-04-20 09:40:17 +02:00
parent 876194e91b
commit cafb3f1ecb
18 changed files with 321 additions and 92 deletions
+12
View File
@@ -0,0 +1,12 @@
function duh --description "Disk usage utility"
if test (count $argv) -eq 0
#echo "duh: missing operand" >&2
#return 1
set fold '.'
else
set fold $argv
end
du -hd1 $fold | sort -h
end