Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by scopio

  1. scopio

    How long does my program take to run ?

    Sorry , this might be fit for you . #!/bin/sh i=0 while [ $i -lt 500 ] do ./yourProgram i=`expr $i + 1` done exit
  2. scopio

    How long does my program take to run ?

    How about this script ? Let the program runs 500 times . Thus u can see the time . #!/bin/sh i=0 while [ $i -lt 500 ] do who >& /dev/null i=`expr $i + 1` done exit 1

Part and Inventory Search