Skip to content

Instantly share code, notes, and snippets.

View midnightmagic's full-sized avatar
🦑
ಠ_ಠ

midnight midnightmagic

🦑
ಠ_ಠ
View GitHub Profile
@midnightmagic
midnightmagic / blockdecoder.sh
Created October 5, 2011 17:14
Block decoder in bash
#!/bin/bash
unset LASTBLOCK
while true
do
if [ -e LAST_BLOCK_EXAMINED ]
then
LASTBLOCK=$( cat LAST_BLOCK_EXAMINED )
fi
if [ -z "$LASTBLOCK" ]