This script downloads the ATOM feed file,
then displays it using Rox:
Code: Select all
#!/bin/ash
wget -O /tmp/forum.html https://puppylinux.rockedge.org/feed
rox /tmp/forum.html
The rox /tmp/forum.html line executes whatever program rox uses to display html files,
that is, it's exactly as if you clicked it.
In my case, it pops up a links web browser window.
Links doesn't work on the rockedge forum, because links doesn't have javascript support.
Links works on the Murga forum.
And links works with the ATOM feed file, no need for javascript.
Edit: the feed address changed slightly.