Skip to content

Instantly share code, notes, and snippets.

@aksinghdce
Last active August 21, 2022 03:09
Show Gist options
  • Save aksinghdce/5807465969262004fd1a5227082092fd to your computer and use it in GitHub Desktop.
Save aksinghdce/5807465969262004fd1a5227082092fd to your computer and use it in GitHub Desktop.
Identify large files in unix directory
du -h * | awk '{print $1 " " $2}' | grep -E "[0-9]+[.]?[0-9]*M"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment