|
script to log free mem and disk space
I'm just learning shell scripting and am new to Unix/Linux. For the past week I've been logging how much free mem is on my server by using the
'$ top' command, and the free disk space in a few directories by doing
'$ df -h'.
It sucks doing that every hour. Can you help me write a script that will do it for me?
|