Skip to content

Commit

Permalink
Wrath need readme finder
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkub committed Aug 23, 2008
1 parent 2be7ca2 commit 9391745
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions wneedreadme.sh
@@ -0,0 +1,23 @@
#! /bin/bash

startdir=$PWD
cd /e/Wrath\ of\ the\ Lich\ King\ Beta/Interface/AddOns

echo ""

for folder in `ls -d */.git`
do
cd $folder/..
mydir=`pwd | sed "s/.*\///"`

if [ ! -f "README.textile" ]
then
echo "---- $mydir needs a readme ----"
fi

cd ..
done

cd "$startdir"
echo ""
exit 0

0 comments on commit 9391745

Please sign in to comment.