aboutsummaryrefslogtreecommitdiff
path: root/ebook
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2019-12-30 08:27:10 -0500
committerB. Watson <yalhcru@gmail.com>2019-12-30 08:27:10 -0500
commite5c802f78fa99884995851eedbb09a6dc4d1fd31 (patch)
tree4c1e57cd1b4c0ae3e4bdc10e946b7eb633cfe462 /ebook
parente8284e015bc739b59687355fd1ec59517736e0b9 (diff)
downloadelvi-impersonators-e5c802f78fa99884995851eedbb09a6dc4d1fd31.tar.gz
Add ebook (e-reading.club) elvi
Diffstat (limited to 'ebook')
-rwxr-xr-xebook37
1 files changed, 37 insertions, 0 deletions
diff --git a/ebook b/ebook
new file mode 100755
index 0000000..67cac12
--- /dev/null
+++ b/ebook
@@ -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"