dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

nzbindex (705B)


      1 #!/bin/sh
      2 # AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
      3 #
      4 # DATE: Thu Jan 17 2013
      5 #
      6 # DESC: Elvi to search nzbindex
      7 # elvis: nzbindex	-- Search nzbindex for NZB (www.nzbindex.nl)
      8 . surfraw || exit 1
      9 
     10 w3_usage_hook () {
     11     cat <<EOF
     12 Usage: $w3_argv0 [options] [search words]...
     13 Description:
     14   Search nzbindex (www.nzbindex.nl) for NZB
     15 EOF
     16     w3_global_usage
     17 }
     18 
     19 w3_config
     20 w3_parse_args "$@"
     21 if test -z "$w3_args"; then
     22     w3_browse_url "http://www.google.com"
     23 else
     24     escaped_args=`w3_url_of_arg $w3_args`
     25     w3_browse_url "http://www.nzbindex.nl/search/?q=${escaped_args}&age=&max=250&sort=agedesc&minsize=50&maxsize=&dq=&poster=&nfo=&hidecross=1&complete=1&hidespam=0&hidespam=1&more=1"
     26 fi