-
-
Save tekknolagi/5418466 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Read _why's SPOOL in real time. | |
# Requires `lp` and a printer. | |
BASEURL=http://whytheluckystiff.net | |
if [ ! -d SPOOL ]; then | |
mkdir SPOOL | |
fi | |
while true; do | |
curl -o index $BASEURL | |
for LINE in $(<index); do | |
if [[ $LINE == SPOOL/* ]]; then | |
if [ ! -f $LINE ]; then | |
echo $LINE | |
curl -o $LINE "$BASEURL/$LINE" | |
lp -o raw $LINE | |
fi | |
fi | |
done | |
sleep 60 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment