Help for this page

Select Code to Download


  1. or download this
    while (<>) {
         m/^(\w+)\s+(\d+)(.*)$/ or die; # You should
    ...
                                        # using $1, etc.
         printf "%s %d %s", $1, (exists $disk{$1} ? 0 : $2+$partition), $3
    +;
    }