Hi @haukex sorry I can't give you the whole script due to security and privacy concerns, but I can give you the salient parts of it.
#execute the query using Aginity Workbench; output saved to flat filfe
my($res) = system($cmd);
### read the output
my(@urls);
my($header);
open my $fh, "<:encoding(utf8)", "$resultsFile" || die("cannot open re
+sults file $resultsFile for reading.\n cmd: $cmd");
my($c)=0; # just here for counting
my($d)=0; # just here for counting
while(<$fh>){
$c++;
if($c == 1) { # get header row
$header = $_;
}
if ($_ =~ /\/search\//){
push(@urls, $_);
}
else{
$d++;
}
}
close($fh);
# sort @urls based on the search string
# e.g. https://www.ibm.com/support/knowledgecenter/es/search/¿Cuales s
+on las partes de una cadena de conexión??scope=SSGU8G_12.1.0|https://
+www.ibm.com/support/knowledgecenter/es/SSGU8G_12.1.0/com.ibm.jdbc_pg.
+doc/ids_jdbc_011.htm|0|1|1|0
my @sorted_urls =
map { $_->[0] }
sort { $a->[1] cmp $b->[1] }
map { m|/search/\s*([^\?]+)\?|; [$_, $1] }
@urls;
# parse and print
print $q->header(-charset => 'utf-8');
print $q->start_html( -title => 'SearchME',
-style=>{'src'=>$stylesheet});
print $q->start_table();
foreach my $row (@sorted_urls){
# print TEMP $row;
$csv->parse($row);
print "<tr>";
$count++;
my @els = $csv->fields;
my(@splits) = split('\|',$row);
$els[0] =~ /\/search\/(.+)\?scope=/i;
my($term) = $1;
my($link) = $els[0];
print "<td>";
# print $link;
print $q->a({-href=>$link,-target=>'_blank'},$term);
print "</td>";
# print other @fields here inside <td></td>
}
print $q->end_table,
$q->end_html;
oh and I reinstalled both modules.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|