diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-30 08:27:10 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2019-12-30 08:27:10 -0500 |
commit | e5c802f78fa99884995851eedbb09a6dc4d1fd31 (patch) | |
tree | 4c1e57cd1b4c0ae3e4bdc10e946b7eb633cfe462 /ebook | |
parent | e8284e015bc739b59687355fd1ec59517736e0b9 (diff) | |
download | elvi-impersonators-e5c802f78fa99884995851eedbb09a6dc4d1fd31.tar.gz |
Add ebook (e-reading.club) elvi
Diffstat (limited to 'ebook')
-rwxr-xr-x | ebook | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,37 @@ +#!/bin/sh + +# elvis: ebook -- Search for ebooks on https://e-reading.club/ + +. surfraw || exit 1 + +default_lang="en" + +# no w3_config_hook as there are no config options + +w3_usage_hook() { + cat <<EOF +Usage: $w3_argv0 [search words]... +Description: + Surfraw search ebooks on https://e-reading.club/ +Local options: None +EOF + w3_global_usage +} + +w3_parse_option_hook() { + opt="$1" + optarg="$2" + case "$opt" in + *) return 1 ;; + esac + return 0 +} + +w3_config +w3_parse_args "$@" + +url="https://e-reading.club/" +if ! null "$w3_args"; then + url="$url?query=$( w3_url_of_arg $w3_args )" +fi +w3_browse_url "$url" |