Got rid of some extraneous crap

This commit is contained in:
Donald Burr 2015-02-19 19:10:03 -08:00
parent c42e6bb0c2
commit c0bcc3d1fa
3 changed files with 0 additions and 4 deletions

13
acatcher/check_roomfile.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
if [ ! -f "$1" ]; then
echo "error: must specify rooms file"
exit 1
fi
for ROOM in `cat "$1"`; do
if grep -q "|$ROOM\$" MASTER_LIST; then
echo "found valid room $ROOM"
else
echo "!!! FOUND INVALID ROOM $ROOM !!!"
fi
done