themoviedb2gopherbay - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
themoviedb2gopherbay (298B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 if [ $# -lt 1 ]; | |
4 then | |
5 printf "usage: %s themoviedburi\n" "$(basename "$0")" >&2 | |
6 exit 1 | |
7 fi | |
8 | |
9 imdburi="$1" | |
10 title="$(curl -s "${imdburi}" \ | |
11 | xml2tsv 2>/dev/null \ | |
12 | grep property=og:title \ | |
13 | sed 's,.*content=\([^\t]*\).*,\1,')" | |
14 | |
15 [ -z "${title}" ] && exit 1 | |
16 | |
17 printf "%s\n" "${title}" | |
18 |