blob: 078f8668e534591141f7a6cff32da8a79851a8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
# ______ _ _ ______ _______ ______ _______ _ _ _
# / _____)(_) (_)(_____ \ (_______)(_____ \ (_______)(_)(_)(_)
# ( (____ _ _ _____) ) _____ _____) ) _______ _ _ _
# \____ \ | | | || __ / | ___) | __ / | ___ || || || |
# _____) )| |___| || | \ \ | | | | \ \ | | | || || || |
# (______/ \_____/ |_| |_||_| |_| |_||_| |_| \_____/
# Surfraw - Shell Users' Revolutionary Front Rage Against the Web
# https://surfraw.alioth.debian.org
# _ _ _ _
# __ _ ___ | |_| |__ | | ___| |_ _ _
# / _` |/ _ \| __| '_ \| |/ _ \ __| | | |
#| (_| | (_) | |_| |_) | | __/ |_| |_| |
# \__, |\___/ \__|_.__/|_|\___|\__|\__,_|
# |___/
# https://www.youtube.com/user/gotbletu
# https://twitter.com/gotbletu
# https://plus.google.com/+gotbletu
# https://github.com/gotbletu
# gotbleu@gmail.com
#
# DATE: Fri Feb 12, 2016
#
# DESC: Elvi to search tldr for linux simplified man pages
# elvis: tldr -- Search tldr for linux simplified man pages (http://tldr-pages.github.io/)
. surfraw || exit 1
w3_usage_hook () {
cat <<EOF
Usage: $w3_argv0 [options] [search words]...
Description:
Search tldr (http://tldr-pages.github.io/) for linux simplified man pages
EOF
w3_global_usage
}
w3_config
w3_parse_args "$@"
if test -z "$w3_args"; then
w3_browse_url "http://tldr-pages.github.io/"
else
escaped_args=`w3_url_of_arg $w3_args`
w3_browse_url "http://www.ostera.io/tldr.jsx/#/${escaped_args}?_k=65vjze"
fi
|