These commands will return the largest 10 directories on a Linux box.
du -k / | sort -n | tail -20
via peterbe.com
These commands will return the largest 10 directories on a Linux box.
du -k / | sort -n | tail -20
via peterbe.com
Richard Lord wrote a good article explaining the various ways of handling dates and times with PHP and MySQL.