Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: FIND  (Read 2184 times)

0 Members and 1 Guest are viewing this topic.

devcom

    Topic Starter


    Apprentice

    Thanked: 37
    FIND
    « on: March 01, 2008, 04:03:48 PM »
    how can i find in
    Code: [Select]
    ping www.google.comonly number of medium time??
    Download: Choice.exe

    Dias de verano

    • Guest
    Re: FIND
    « Reply #1 on: March 01, 2008, 05:18:05 PM »
    What does "only number of medium time" mean in English? Please explain more clearly what it is that you want to know.


    GuruGary



      Adviser
      Re: FIND
      « Reply #2 on: March 01, 2008, 10:59:08 PM »
      It sounds like maybe you want the average time?  If so you can try this:
      Code: [Select]
      @echo off
      setlocal
      set host=google.com
      echo Please wait while average time is calculated ...
      for /f "tokens=4 delims==" %%a in ('ping %host% ^| findstr Average') do echo Average time for %host% =%%a

      devcom

        Topic Starter


        Apprentice

        Thanked: 37
        Re: FIND
        « Reply #3 on: March 02, 2008, 03:25:42 AM »
        oh sory i was thinking about average thanks @GuruGary it works
        Download: Choice.exe