mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
14 lines
274 B
Fish
14 lines
274 B
Fish
function fs --description "Determine size of a file or total size of a directory"
|
|
if du -b /dev/null >/dev/null 2>&1
|
|
set arg -sbh
|
|
else
|
|
set arg -sh
|
|
end
|
|
|
|
if test -n "$argv"
|
|
du $arg -- $argv
|
|
else
|
|
du $arg .[^.]* *
|
|
end
|
|
end
|