summaryrefslogtreecommitdiffstats
path: root/util/bin/wiki.firstpar
blob: d2181f1b220b31bf15c5a2768703da6c88cfabf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/bash
set -euf

A=Mozilla

pwd="$(dirname "$(readlink -f "$0")")"

for x in \
    "$pwd/../../submodules/github/tmpvar" \
    "$pwd/../../submodules/github/mikeal" \
    "$pwd/../../submodules/github/NV" \
    "$pwd/../../submodules/github/tautologistics" \
; do
  export NODE_PATH="`readlink -f "$x"`${NODE_PATH+:$NODE_PATH}"
done

# ensure query is ready
(cd "$pwd/../.." && git submodule update --init)

query() {
  node "$(readlink -f "$pwd/../../submodules/github/visionmedia/query")" "$@"
}
curl -b redirect=seen -L -e http://de.wikipedia.org/wiki/$RANDOM -sS -A "\${A-Mozilla}" "$1" | query 'p' 'first'  |w3m -T text/html -dump| cut -c -750