Got rid of some extraneous crap
This commit is contained in:
parent
c42e6bb0c2
commit
c0bcc3d1fa
3 changed files with 0 additions and 4 deletions
13
acatcher/check_roomfile.sh
Executable file
13
acatcher/check_roomfile.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue