merge successful with staging
[biocity.git] / src / multi.sh
blob005433a373345738252bd200d3c16264f6971306
1 #!/bin/sh
2 i=1
3 while [ $i -le 50 ]
4 do
5 dh=`date +%k`
6 dm=`date +%M`
7 ds=`date +%S`
8 dns=`date +%N`
9 n=`echo "$ds*10000+$dm*100+$ds+$dns" | bc`
10 `GSL_RNG_SEED=$n ./bioc >> dat/data-$i.txt`
11 i=$(($i+1))
12 done