#!/bin/bash
directory=”/path/to/directory”
echo “Files larger than 1GB in $directory:”
echo “———————————-“
find “$directory” -type f -size +1G -exec ls -lh {} \;
E-mail : support@tech2now.in
#!/bin/bash
directory=”/path/to/directory”
echo “Files larger than 1GB in $directory:”
echo “———————————-“
find “$directory” -type f -size +1G -exec ls -lh {} \;