[ Skip to content | Translations of this page | document source ]


top 10


#!/bin/sh
# Autor Exal de Jesus Garcia Carrillo <exal AT softwarelivre DOT org>
# Copyright (c) 2007,2008 Exal de Jesus Garcia Carrillo

percent=$(df | grep sda1 | gawk '{print $5}')

echo "" > report
echo `uname -n` has $percent of disk usage, please consider delete irrelevant fi
les. >> report
echo "Today biggest disk utilizers:" >> report
echo "" >> report

du -hs $(ls) | gawk '$1 ~ "M"' | grep -v sam | grep -v exal | sort -rn | head >> report


echo "" >> report

 exit 0


[ EN ] [ ES ] [PT]
Copyright (C) 2006,2007,2008 Exal de Jesus Garcia Carrillo
Last update: fevereiro 5, 2008

Valid XHTML 1.0 Strict Valid CSS!