标签: python bash
我有两个更长的脚本来做同样的事情。一次是bash脚本,一个是python。
Linux中测试哪种更有效的最佳方法是什么?
使用时间最好吗?
答案 0 :(得分:2)
是。另外,使用循环可以获得更好的精度:
time for i in {1..100}; do bash yourbashscript >/dev/null 2>&1; done time for i in {1..100}; do python yourpythonscript >/dev/null 2>&1; done