Created
September 24, 2020 01:39
-
-
Save tnibert/8beda22a9034791dc8ff4edffbcd47ce to your computer and use it in GitHub Desktop.
Identify large files
This file contains 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 | |
# identify all files larger that 1 GB | |
find / -xdev -type f -size +1G -exec ls -lah {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment