check-file-top10.sh
· 98 B · Bash
Ham
## check des 10 plus gros fichier
find /var/log -type f -exec du -hs {} \; | sort -n | tail -n 10
| 1 | ## check des 10 plus gros fichier |
| 2 | find /var/log -type f -exec du -hs {} \; | sort -n | tail -n 10 |