Skip to content

Instantly share code, notes, and snippets.

@Strykar
Last active November 9, 2018 00:04
Show Gist options
  • Save Strykar/73b002abe88d08b601de9526dd8a06a2 to your computer and use it in GitHub Desktop.
Save Strykar/73b002abe88d08b601de9526dd8a06a2 to your computer and use it in GitHub Desktop.
#!/bin/bash
find / -type f -ignore_readdir_race -size +20M -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'
On fbsd and bash:
sudo find / -type f -ignore_readdir_race -size +20M -exec ls -lh {} \; | awk '{ print $5 ": " $9 " - " $3 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment