We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
du
this made me sad today
disk_usage() { # normalize du across systems case $(uname -s) in Linux) DU="du -sb" ;; FreeBSD) DU="du -s -A -B 1" ;; Darwin | DragonFly) DU="du" ;; esac $DU "$1" | awk "{print \$1}" }
maybe this project can make a go-du that's the same everywhere :)
go-du
The text was updated successfully, but these errors were encountered:
And go-coreutils already prefers the gnu/linux flags/convention.
go-coreutils
Sorry, something went wrong.
No branches or pull requests
this made me sad today
maybe this project can make a
go-du
that's the same everywhere :)The text was updated successfully, but these errors were encountered: