Files
igl/scripts/make_j.sh
T
2013-11-25 10:47:41 +01:00

10 lines
174 B
Bash
Executable File

#!/bin/bash
for i in {1..20}
do
make clean &>/dev/null
printf "$i "
t=`(time make -j$i lib&>/dev/null) 2>&1 | grep real | sed -e "s/real[^0-9]*//g"`
echo "$t"
done