How can I use a Windows batch file to measure the performance of console application?

前端 未结 2 414
无人及你
无人及你 2020-12-19 13:28

How can I write a simple batch file to measure the performance of a console-based application? The console application accepts two command line arguments.

I would li

2条回答
  •  感动是毒
    2020-12-19 14:04

    A pure batch solution could be.

    @echo off
    set "startTime=%time%"
    for /L %%n in (1,1, 1000) do 

提交回复
热议问题