Consulta la Wikipedia desde la línea de comandos a través de DNS

wikipedia.jpg

Como gran entusiasta de la línea comandos, este truco me gustó mucho:
dig +short txt.wp.dg.cx
Nos devuelve el registro TXT de los servidores DNS de la Wikipedia. Además del texto, también se incluye el link a la entrada del artículo. Por ejemplo:
$ dig +short txt hacking.wp.dg.cx
"Hacking may refer to: A form of the verb hack, Computer security hacking where someone attempts to defeat or exploit the security capabilities of a computer system, A casual form of horse-riding, see Equestrianism, Illegal taxicab operation, The act of jo" "ke thievery, The name of a specific Erbherrschaft (hereditary Lordship), Raising a bird of prey in an artificial nest, A... http://a.vu/w:Hacking"
Para facilitarnos la vida podemos crearnos un script. Otras opciones:
mwiki () { blah=`echo $@ | sed -e 's/ /_/g'`; dig +short txt $blah.wp.dg.cx; }
mwiki() { dig +short txt "$*".wp.dg.cx; }
nslookup -q=txt .wp.dg.cx
mwiki () { dig +short txt `echo $*|sed 's|  *|_|g'`.wp.dg.cx; }
En todos los casos se usa el comando dig o nslookup, comandos típicos para hacer consultas a servidores DNS.

Enlace original. Visto aquí.