lynx

Obtener la IP externa de tu router en la consola

Sencillo script escrito en bash para obtener nuestra IP pública si estamos detrás de un router. Visto hoy en howflow.com. Solución 1: wget y whatsmyip.com #!/bin/sh IP=`wget -q -O - http://whatismyip.com/automation/n09230945.asp` echo $IP Solución 2: wget y freeshell.org #!/bin/sh IP=$( wget -qO - http://cfaj.freeshell.org/ipaddr.cgi ) echo $IP Solución 3: lynx y freeshell.org #!/bin/sh IP=$( lynx -dump http://cfaj.freeshell.org/ipaddr.cgi ) echo $IP

Navegar por la terminal

Lynx es un navegador por terminal ideal para situaciones de emergencia, donde no disponemos de entorno grafico y necesitamos ayudarnos con internet. etiquetas: linux, terminal, navegador, navegador web, lynx, software libre votes
Fuente: meneame.net

Valid XHTML 1.0 Strict