Skip to content

Instantly share code, notes, and snippets.

@zafergurel
Created December 3, 2020 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zafergurel/ecbda7a2a4359b4ea51271708734ab9b to your computer and use it in GitHub Desktop.
Save zafergurel/ecbda7a2a4359b4ea51271708734ab9b to your computer and use it in GitHub Desktop.
Get disks greater than 30 GB in size
df | awk '{if($2 > 30000000 && $6 !~ "/var") {print $6}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment