summaryrefslogtreecommitdiff
path: root/.config/surfraw/elvi/torrentz
diff options
context:
space:
mode:
Diffstat (limited to '.config/surfraw/elvi/torrentz')
-rwxr-xr-x.config/surfraw/elvi/torrentz27
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/surfraw/elvi/torrentz b/.config/surfraw/elvi/torrentz
new file mode 100755
index 0000000..047a06b
--- /dev/null
+++ b/.config/surfraw/elvi/torrentz
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# AUTHOR: gotbletu (https://twitter.com/gotbletu)
+#
+# DATE: Sat Nov 17 2012
+#
+# DESC: Elvi to search torrentz
+# elvis: torrentz -- Search Torrentz for torrents (www.torrentz.eu)
+. surfraw || exit 1
+
+w3_usage_hook () {
+ cat <<EOF
+Usage: $w3_argv0 [options] [search words]...
+Description:
+ Search torrentz (www.torrentz.eu) for torrents
+EOF
+ w3_global_usage
+}
+
+w3_config
+w3_parse_args "$@"
+if test -z "$w3_args"; then
+ w3_browse_url "http://torrentz.unblocked.red"
+else
+ escaped_args=`w3_url_of_arg $w3_args`
+ w3_browse_url "https://torrentz.unblocked.red/search?f=${escaped_args}"
+fi