#!/bin/sh # # WHITEWASH: Turn the Green Thing Black and White # if [ -f .header ] then if [ -f .descs ] then echo "[%] Copying INDEX.HTML to WINDEX.HTML..." echo "[%] Green and Black, be Black and White!" cat index.html | sed 's/#000000/#FFFFFF/g' | sed 's/00FF00/000000/g' | sed 's/00DD00/002200/g' | sed 's/00AA00/004400/g' >.windex.html for dir in * do if [ -d $dir ] then echo "[!] $dir is a subdirectory. Whitewashing..." cat .windex.html | sed "s/HREF=\"${dir}\"/HREF=\"${dir}\/.windex.html\"/g" >.windex2.html mv .windex2.html .windex.html cd $dir /textfiles/magic/whitewash cd .. fi done else echo "[!] This doesn't seem kosher. Stopping!" fi else echo "[!] This doesn't seem kosher. Stopping!" fi