Help for this page

Select Code to Download


  1. or download this
    Syntax: $program [-m|-s REGEXP [-t TABLE] [-c0 1] ]  [SQL QUERY] [-q] 
    +[-h]
    
    ...
    -q           Quiet. Nothing on STDERR.
    -h           Display even more help.
    SQL QUERY    Execute the query and output the matching line values.
    
  2. or download this
    texql.pl "--m=/^(\([^:]+):(\\w+)/" < debuglog.txt
    cat some_random_file | texql.pl -s /:/ select c0 from t where c1 = 0
    texql.pl --t=another_table -m /^(\\w+)+/ < all_names.txt
    texql.pl 'select distinct(c1) from another_table' > distinct_name.txt
    
  3. or download this
    #!/use/local/bin/perl -w
    $|++;
    ...
    
    
    __END__