#!/bin/sh
# This shellscript is provided by Dr. Guenter Bechly for Debian,
# but may be used by others, since it is under Artistic licence
# just like snap.

cd;
wget http://www.napigator.com/list.php;
mv list.php ~/snap/naplist.html;
if test -f /usr/bin/w3m; then 
    w3m ~/snap/naplist.html
else
    lynx ~/snap/naplist.html
fi
