dotfiles

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

opendir_apps (1087B)


      1 #!/bin/sh
      2 # AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
      3 #
      4 # DATE: Wed October 04, 2017
      5 #
      6 # DESC: Elvi to search google for open directories apps files
      7 # elvis: opendir_apps	-- Search google for open directories apps files (https://www.google.com)
      8 . surfraw || exit 1
      9 
     10 w3_usage_hook () {
     11     cat <<EOF
     12 Usage: $w3_argv0 [options] [search words]...
     13 Description:
     14   Search google for open directories apps files (https://www.google.com)
     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 "https://www.google.com"
     23     w3_browse_url "https://www.google.com/search?q=%2B(.exe|.iso|.tar|.rar|.zip|.apk)+intitle:%22index%20of%22%20-inurl:(jsp|pl|php|html|aspx|htm|cf|shtml)%20-inurl:(listen77|mp3raid|mp3toss|mp3drug|index_of|wallywashis)"
     24 else
     25     escaped_args=`w3_url_of_arg $w3_args`
     26     w3_browse_url "https://www.google.com/search?q=%2B(.exe|.iso|.tar|.rar|.zip|.apk)%20+${escaped_args}%20+intitle:%22index%20of%22%20-inurl:(jsp|pl|php|html|aspx|htm|cf|shtml)%20-inurl:(listen77|mp3raid|mp3toss|mp3drug|index_of|wallywashis)"
     27 fi