From: Chris Koeritz Date: Wed, 28 Jul 2021 18:35:17 +0000 (-0400) Subject: shows disk usage summaries if GB or above in size X-Git-Tag: 2.140.128~1^2~15 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=1e12ab9c8e262c16b2953c0701424cd5e751f156 shows disk usage summaries if GB or above in size --- diff --git a/scripts/files/show_just_biggies.sh b/scripts/files/show_just_biggies.sh new file mode 100644 index 00000000..782ab15e --- /dev/null +++ b/scripts/files/show_just_biggies.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# iterates through the directories or files passed on the command line and does a summary disk usage, but only the +# things measurable in gigabytes, terabytes, or larger are shown. the smaller items are just omitted (so anything +# measurable within megabytes, kilobytes, and bytes, as decided by the human-readable du command. + +for dir in "${@}"; do + du -sh "$dir" 2>/dev/null | grep -v "^[ 0-9.]*K\|^[ 0-9.]*M\|^[ 0-9.]*B" +done