themoviedb2gopherbay - annna - Annna the nice friendly bot.
HTML git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
---
themoviedb2gopherbay (334B)
---
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 "gophers://bitreich.org/1/bay/search/%s\n" "${title}"
18