in reply to DiskUsage.pl
should be:while () {
Also, a shortcut for using temp variables (or undefs), instead ofwhile (<USERS>) {
(which needs a leading parenthesis, btw), use an array slice to extract only the values you need:$j, $j, $j, $j, $j, $month, $date, $time, $uname) = split;
--sacked($month, $date, $time, $uname) = (split)[5..8];
|
|---|