3 # @(#)nhfsrun.sh 1.3 89/07/07 Copyright (c) 1989, Legato Systems, Inc.
5 # See DISCLAIMER file for restrictions
9 # Usage: nhfsrun [suffix]
11 # Run nhfsstone with a range of different loads and put
12 # results in a file called run.<suffix>
16 echo "usage: $0 [suffix]"
45 # Catch SIGUSR1 and ignore it.
46 # SIGUSR1 is used by nhfsstone to synchronize child processes.
48 nothing() { echo -n ""; }
54 while [ $LOAD -le $END ]; do
55 echo nhfsstone -l $LOAD
56 nhfsstone -l $LOAD >> $OUTFILE
58 LOAD=`expr $LOAD + $INCR`