Help for this page

Select Code to Download


  1. or download this
    # assume $lname, $tempfile were assigned previously
    my $command = "unix_blues -w $lname >> $tempfile";
    ...
    # the above puts the output into $tempfile and the return code in $rc
    # they then open, read the tempfile putting lines into array (which co
    +uld have  
    # also been done in one line)
    
  2. or download this
    my $command = "unix_blues -w $lname";
    @BluesData = `$command`;