Skip to content

Instantly share code, notes, and snippets.

@AmirAref
Created July 24, 2022 19:25
Show Gist options
  • Save AmirAref/37d5d3196c93b7c444a2317e8e3bc23f to your computer and use it in GitHub Desktop.
Save AmirAref/37d5d3196c93b7c444a2317e8e3bc23f to your computer and use it in GitHub Desktop.
a bash script to find the files bigger than 1 MegaByte
find . -size +1M | xargs -I '{}' ls -sh '{}' | sort -h -k1rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment