Skip to content

Commit

Permalink
add script to run redump
Browse files Browse the repository at this point in the history
Groups different sets of .rd files and generates on html report
per group.
  • Loading branch information
robclark committed Apr 7, 2012
1 parent 3f21237 commit 1c89ab8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions run-redump.sh
@@ -0,0 +1,14 @@
#!/bin/sh

found=""

for f in *.rd; do
test=${f%%-[0-9]*};
echo $found | grep $test > /dev/null
if [ $? = 1 ]; then
echo "found: $test";
./redump $test-*.rd > $test.html
found="$found $test"
fi
done

0 comments on commit 1c89ab8

Please sign in to comment.