Search notes:

Script: wp

wp is a simple Perl script that uses the WWW::Wikipedia module to quickly display a wikipedia article on a shell.
#!/usr/bin/perl
use strict;
use warnings;
use WWW::Wikipedia;

binmode STDOUT, ':utf8';

my $searchterm = join " ", @ARGV;
die unless $searchterm;

my $wp = WWW::Wikipedia->new(language => 'de');
my $entry = $wp->search($searchterm);

print $entry->text();

print "Related entries:\n";
for my $related ($entry->related) {
  print "  $related\n";
}
Github repository scripts-and-utilities, path: /wp

See also

Scripts
Perl module WWW::Wikipedia

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759390851, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/tools/scripts/personal/wp(62): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78