Search results

  1. S

    Perl: Using a match to select two lines at the same time?

    I've got a log file I am trying to parse with Perl. Basically I want to select two lines and then concatenate to print out both values on one line. What I have so far; #!/usr/bin/perl -w #use strict; my $line1=$_; $LOGFILE="Output.txt"; open(LOGFILE) or die("Could not open Output.txt.")...
  2. S

    Using perl to parse a non-delimited file?

    I have a text file with a number of repeating entries of the format; ____________ Start: 4/16/2012 3:57:52 PM End: 4/16/2012 3:57:54 PM iterations: 100/100 Elapsed: 1660.8111ms Requests/s: 60.2115436246783 s/Request: 0.016608111 Response Time (avg): 119.504229ms Response Time (std dev)...
  3. S

    Census Bureau Long Form Authorization?

    I've been getting harassed by the census bureau of late, which is odd since I returned my documentation months ago. I asked the latest caller and she said that the Census Bureau is now collecting extended information on American citizens. I asked her for what statute this was authorized under...
  4. S

    Automatically create an HTML file from an excel spreadsheet?

    I would like to set up a batch file that will create an HTML document from an existing Excel spreadsheet once per day. Can anyone guide me through how to do so, step by step? Thanks!
Back
Top