6

我想看看 bash 函数运行需要多长时间。在做了一些研究之后,我想出了这种使用子外壳的方法:

function test-function() {

    time (
        rsync -av ~/tmp/test-dir-start/  ~/tmp/test-dir-end/
        rsync -av ~/tmp/test-dir-start/  ~/tmp/test-dir-end-2/
        # etc...
    )

}

是否有替代/更好的方法来计时 bash 功能?

更新:我希望将time调用嵌入到函数中,以便它每次都运行而无需执行time test-function. 我应该更清楚这一点。

4

1 回答 1

12

您可以使用命令分组而不是子shell:

time { command1; command2; }

更新 - 更具体的例子:

test-function() {

  time {
     rsync -av ~/tmp/test-dir-start/  ~/tmp/test-dir-end/
     rsync -av ~/tmp/test-dir-start/  ~/tmp/test-dir-end-2/
     # etc...
    }
}
于 2012-08-01T15:48:52.273 回答