gist (640B)
1 #!/bin/sh 2 # AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry) 3 # 4 # DATE: Sun January 28, 2018 5 # 6 # DESC: Elvi to search Gist 7 # elvis: gist -- Search Gist for text files paste dump (https://gist.github.com) 8 . surfraw || exit 1 9 10 w3_usage_hook () { 11 cat <<EOF 12 Usage: $w3_argv0 [options] [search words]... 13 Description: 14 Search Gist (www.gist.com) for text files paste dump 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://gist.github.com" 23 else 24 escaped_args=`w3_url_of_arg $w3_args` 25 w3_browse_url "https://gist.github.com/search?utf8=✓&q=${escaped_args}" 26 fi