Personal tools
You are here: Home Documentation Developers Zope Concurrent Writes Strategy count.sh

count.sh

by T. Kim Nguyen last modified Oct 24, 2008 02:19 PM

script that gets a count of success & failed makeFolder calls

echo -n "Number of runs: "
runs=`ls -1 outkim* | wc -l`
echo $runs
echo -n "Number OK: "
okruns=`grep -l booya out* | wc -l`
echo $okruns
echo -n "Number of conflicts: "
numconflicts=`expr $runs - $okruns`
echo $numconflicts




Document Actions
  • Print this
  • Bookmarks