print <<"END";

System Administration

END if ($action eq 'df' ) { my ($headers_ar, $df_result_ar) = &MySystem::get_df; # print out the table headers print "\n"; foreach my $t_head ( @$headers_ar ) { print "\n"; } # end table header print "\n"; foreach my $hold_ar (@$df_result_ar) { print ""; foreach (@$hold_ar) { print ""; } print ""; } # end table print "
$t_head
$_
\n"; } print <<"END";
END