Last active
November 9, 2018 00:04
-
-
Save Strykar/73b002abe88d08b601de9526dd8a06a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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