2021-05-24 01:11:56 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|