: 글때 쓰면 진짜루 좋겠네요!
:
: lynx 불편해서 잘 안썼었는데..
:
: 또 다른데 .. 또 어디에 유용하게 쓰일까용?
lynx 는 만능의 툴이죠.
95년부터 lynx 를 썼는데.... 쓰면 쓸수록 그 매력에 푹~~~ 젖게 됩니다.
다음과 같은 일도 가능하지요.
#!/bin/sh
echo "FreeBSD Latest Release"
lynx -dump http://www.freebsd.org/index.html | grep Current
echo ""
echo "NetBSD Latest Release"
lynx -dump http://www.netbsd.org | grep Latest | cut -d "]" -f2
echo ""
echo "OpenBSD Latest Release"
lynx -dump http://www.openbsd.org | grep current | cut -d "]" -f2 | sed s/which//
echo ""
echo "Linux Latest Release"
lynx -dump http://www.kernel.org | grep latest | cut -d "]" -f2
요샌 마우스와 프레임땜시 links 가 편하더군요.
--