2021-05-24 01:11:56 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
2021-07-11 00:00:22 +02:00
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
|
|
# SPDX-License-Identifier: MIT
|
2021-05-24 01:11:56 +02:00
|
|
|
|
|
|
|
my $query = "@ARGV";
|
|
|
|
print "Usage: faq <id or search text>\n" and exit 0 if not length $query;
|
|
|
|
|
2021-05-24 01:19:21 +02:00
|
|
|
my (%faq, $match);
|
2021-05-24 01:11:56 +02:00
|
|
|
|
|
|
|
open(FILE, "< bashfaq.txt") or print "Can't open Bash FAQ: $!" and exit 1;
|
|
|
|
|
|
|
|
foreach my $line (<FILE>) {
|
|
|
|
if ($line =~ /^(\d+)\.\s+(.*)$/) {
|
|
|
|
$faq{$1} = $2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close FILE;
|
|
|
|
|
|
|
|
if ($query =~ / >/) {
|
|
|
|
$rcpt = $query;
|
|
|
|
$query =~ s/ +>.*$//;
|
|
|
|
$rcpt =~ s/^.* > *//;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exists $faq{$query}) {
|
2021-05-24 01:19:21 +02:00
|
|
|
$match = $query;
|
2021-05-24 01:11:56 +02:00
|
|
|
} else {
|
|
|
|
foreach my $key (keys %faq) {
|
2021-05-24 06:19:19 +02:00
|
|
|
if ($faq{$key} =~ /\Q$query\E/i) {
|
2021-05-24 01:19:21 +02:00
|
|
|
$match = $key;
|
2021-05-24 01:11:56 +02:00
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-24 01:19:21 +02:00
|
|
|
if ($match) {
|
|
|
|
my $id = sprintf "%03d", $match;
|
|
|
|
print "$rcpt: " if $rcpt;
|
2021-05-24 02:09:13 +02:00
|
|
|
print "https://mywiki.wooledge.org/BashFAQ/$id -- $faq{$match}\n";
|
2021-05-24 01:11:56 +02:00
|
|
|
} else {
|
|
|
|
print "No matches found at https://mywiki.wooledge.org/BashFAQ\n";
|
|
|
|
}
|