- or download this
while(<COUNT>){
if(/^$/){}else{
...
chomp($count);
$OS_Count{$OS_Name}=$count;
}
- or download this
while(<COUNT>){
next if /^\s*#?\s*$/; # skip blank lines (the hash mark lets you a
+dd comments)
...
($OS_Name,$count) = split /=/;
$OS_Count{$OS_Name} = $count;
}
- or download this
print $CGI->redirect($file);