For finding disk space :
For Finding files greater than specific size :
find / -type f -size +300000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
df -h
For Finding files greater than specific size :
find / -type f -size +300000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
No comments:
Post a Comment