in reply to Format iostat output into excel graphs to analyse disk io bottlenecks

Is there a way I could use this to read a simple tab delimited text file and convert it into excel that could be read by the browser? Jamison
  • Comment on Re: Format iostat output into excel graphs to analyse disk io bottlenecks

Replies are listed 'Best First'.
Re: Re: Format iostat output into excel graphs to analyse disk io bottlenecks
by Anonymous Monk on Sep 08, 2003 at 19:42 UTC
    Using the following line: print "Content-type: application/vnd.ms-excel", "\n\n"; will force anything viewed in IE to open via Excel. It can be used like so:
    #!/usr/bin/perl open TABBED_FILE,"your_tabbed_file.txt";# or die "cant open tabbed fil +e $!"; @data = <TABBED_FILE>; close TABBED_FILE; print "Content-type: application/vnd.ms-excel", "\n\n"; print "Col A\tCol B\Col C\n"; foreach $line(@data) { my ($thingA,$thingB,$thingC)=split(/\t/,$line); print "$thingA\t$thingB\t$thingC\n"; }
    ======================== JIC