我想看看 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
. 我应该更清楚这一点。