- or download this
for(my $i = $#data; $i > 0; $i--) {
if ($data[$i] =~ /\|/) {
$last_line = $data[$i];
...
$last_line = $line;
last if $line =~ /\|/;
}
- or download this
( $directory,
$search_string,
...,
$scan_down...) = split('|',$last_line);
- or download this
print SAVED_SEARCH (join '|',
$directory,
$search_string,
...,
$scan_down...,
"\n");