This website requires JavaScript.
Explore
Help
Sign In
aw
/
snippets
Watch
1
Fork
0
You've already forked snippets
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b04939910c
snippets
/
diskuse
4 lines
99 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add script for sorted disk usage in MB
2018-12-08 00:30:52 +01:00
#!/usr/bin/env bash
diskuse correction
2018-12-08 00:38:40 +01:00
du -s * | sort -k1n | awk '{printf "%.1f", $1/1024.0; $1=""; print "\t" $0}'
Reference in New Issue
Copy Permalink