diff options
Diffstat (limited to '.config/surfraw/elvi/top100pirate')
| -rwxr-xr-x | .config/surfraw/elvi/top100pirate | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.config/surfraw/elvi/top100pirate b/.config/surfraw/elvi/top100pirate new file mode 100755 index 0000000..f6b368d --- /dev/null +++ b/.config/surfraw/elvi/top100pirate @@ -0,0 +1,27 @@ +#!/bin/sh +# +# AUTHOR: vgg +# +# DATE: Fri Nov 10 2017 +# +# DESC: Elvi to search the piratebay.org top 100 +# elvis: top100pirate -- Search top 100 torrents on piratebay (https://thepiratebay.org/top) +. surfraw || exit 1 + +w3_usage_hook () { + cat <<EOF +Usage: $w3_argv0 [options] [search words]... +Description: + Search Piratebay Top 100 (https://thepiratebay.org/top) for torrents +EOF + w3_global_usage +} + +w3_config +w3_parse_args "$@" +if test -z "$w3_args"; then + w3_browse_url "https://thepiratebay.org/top" +else + escaped_args=`w3_url_of_arg $w3_args` + w3_browse_url "https://thepiratebay.org/top/search?f=${escaped_args}" +fi |
