Skip to content

Instantly share code, notes, and snippets.

@tekknolagi
Forked from spro/why_spool.sh
Created April 19, 2013 06:15
Show Gist options
  • Save tekknolagi/5418466 to your computer and use it in GitHub Desktop.
Save tekknolagi/5418466 to your computer and use it in GitHub Desktop.
#!/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