15 lines
220 B
Plaintext
15 lines
220 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Time the functions.
|
||
|
#
|
||
|
BC=../bc
|
||
|
SYSBC=/usr/bin/bc
|
||
|
for file in exp.b ln.b sine.b atan.b jn.b mul.b div.b raise.b sqrt.b
|
||
|
do
|
||
|
for prog in $BC $SYSBC
|
||
|
do
|
||
|
echo Timing $file with $prog
|
||
|
time $prog -l $file
|
||
|
done
|
||
|
done
|