Created
June 29, 2024 08:04
Finds files larger than 6 megabytes starting at $1
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 | |
if [ -z "$1" ]; then | |
echo "Specify which directory you want to check." | |
i exit | |
else | |
echo "Checking \$1 ... " | |
fi | |
sudo find "$1" -type f -size +6M -exec ls -lh {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment