home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bc-102.zip / bc-1.02 / Test / timetest < prev   
Text File  |  1991-12-16  |  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.