home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / bc-1.03-base.tgz / bc-1.03-base.tar / fsf / bc / Test / timetest < prev   
Text File  |  1994-11-04  |  220b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # Time the functions.
  4. #
  5. BC=../bc
  6. SYSBC=/usr/bin/bc
  7. for file in exp.b ln.b sine.b atan.b jn.b mul.b div.b raise.b sqrt.b
  8. do
  9. for prog in $BC $SYSBC
  10. do
  11. echo Timing $file with $prog
  12. time $prog -l $file
  13. done
  14. done
  15.