Learn Tiny Core. View Tiny Core Screen Shots and Videos.
#!/bin/sh# Download Astronomy Picture of the DayVIEWER="flpicsee"URL="http://apod.nasa.gov/apod"PIC="$(wget -O - $URL/astropix.html 2>/dev/null | grep '<a href="image')"[ "$?" == 0 ] || exit 1PIC="${PIC#*\"}" && PIC=${PIC%\">} && EXT="${PIC##*.}"POD="/opt/backgrounds/astropic.$EXT"wget -q -O "$POD" $URL/$PIC[ "$?" == 0 ] || exit 1[ $(which "$VIEWER") ] && "$VIEWER" "$POD" &