如何在一段时间内继续运行程序



我想重复运行一个程序,最长5秒。

我知道timeout在指定的时间内执行命令,例如:

timeout 5 ./a.out

但我想继续执行程序,直到5秒钟过去,这样我就可以知道如何它被执行了很多次。

我想我需要这样的东西:

timeout 5 `while true; do ./a.out; done`

但这不起作用。我已经尝试创建一个shell脚本来计算每个循环迭代的经过时间,并从开始时间中减去它,但这是低效的。

如有任何帮助,我们将不胜感激。

如果您想使用超时:

timeout 5s ./a.out

你可以写一个简短的脚本,然后用date -d "date string" +%s轻松地设置一个end time,以获得未来几秒的时间。然后比较current timeend time,在true上断开。这允许您在执行期间捕获额外的数据。例如,以下代码设置将来的结束时间5 seconds,然后循环直到current time等于end

#!/bin/bash
end=$(date -d "+ 5 seconds" +%s)        # set end time with "+ 5 seconds"
declare -i count=0
while [ $(date +%s) -lt $end ]; do      # compare current time to end until true
    ((count++))
    printf "working... %sn" "$count"   # do stuff
    sleep .5
done

输出:

$ bash timeexec.sh
working... 1
working... 2
working... 3
working... 4
working... 5
working... 6
working... 7
working... 8
working... 9

在你的情况下,你会做一些类似的事情

./a.out &                               # start your application in background
apid=$(pidof a.out)                     # save PID of a.out
while [ $(date +%s) -lt $end ]; do
    # do stuff, count, etc.
    sleep .5                            # something to prevent continual looping
done
kill $apid                              # kill process after time test true

相关内容

  • 没有找到相关文章

最新更新