Created
June 1, 2021 10:01
-
-
Save skseth/0fde143f578a9c3c8dbe05ca1af423bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# du -sh - disk usage in s - summary h - human readable format | |
# grep -E "\dG" - filter out items with a digit followed by G - gigabyte | |
du -sh * | grep -E "\dG" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment