- 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.
- 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
- or download this
#!/use/local/bin/perl -w
$|++;
...
__END__