diff options
author | June McEnroe <june@causal.agency> | 2019-07-24 17:34:24 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-07-24 17:34:24 -0400 |
commit | 44fa22f89e674912627a52d8f4f9593f8ff5476e (patch) | |
tree | d435f33cb0a39c8dae0865b8310684675491ad96 /home/.local/bin | |
parent | Add beginning of date calculator (diff) | |
download | src-44fa22f89e674912627a52d8f4f9593f8ff5476e.tar.gz src-44fa22f89e674912627a52d8f4f9593f8ff5476e.zip |
Add wiki script
Diffstat (limited to '')
-rwxr-xr-x | home/.local/bin/wiki | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home/.local/bin/wiki b/home/.local/bin/wiki new file mode 100755 index 00000000..c4308098 --- /dev/null +++ b/home/.local/bin/wiki @@ -0,0 +1,7 @@ +#!/bin/sh +set -eu + +curl -Gs 'https://en.wikipedia.org/w/api.php' \ + -d 'action=opensearch' --data-urlencode "search=$1" \ + | jq -r '.[2][]' \ + | sed -En "s/^([^ ]| [^i]| i[^s]| is[^ ])* is /It's not a $1, what we need is /p" |