我有一个 shell 脚本,它记录作为参数传递给它的各种程序的性能,以帮助我选择性能最高的程序。相关片段:
#!/usr/bin/env sh
function cal_perf () {
real_t=0
user_t=0
sys_t=0
for (( trial=1 ; trial<=$3 ; ++trial )) ; do
shopt -s lastpipe
/usr/bin/time -f '%e:%S:%U' $1 $2 |& IFS=":" read real sys user
real_t=$(echo "$real + $real_t" | bc)
user_t=$(echo "$user + $user_t" | bc)
sys_t=$(echo "$sys + $sys_t" | bc)
done
real_t=$(echo "scale=2 ; $real_t / $3" | bc)
user_t=$(echo "scale=2 ; $user_t / $3" | bc)
sys_t=$(echo "scale=2 ; $sys_t / $3" | bc)
printf "%s\t%d\t%.2f\t%.2f\t%.2f\n" $2 $3 $real_t $user_t $sys_t >> timings_$(date '+%Y%m%d')
}
# main
printf "program\t#trials\treal_time_am\tuser_time_am\tsys time_am\n" > timings_$(date '+%Y%m%d')
translator=$1
shift
while [ $# -gt 1 ] ; do cal_perf $translator $1 ${!#} ; shift ; done
它应该在命令行上运行,如下所示:
perf <translator_progam> <list_of_programs_to_compare> <number_of_trials>
...例如:假设我想比较xip.py, foo.py, bar.py, bas.py, qux.py
-- 工作目录的净内容 -- 并在生成统计信息之前分别运行它们 50 次;我将脚本调用为:
perf python *py 50
我想我在这里遗漏了一些明显的东西,但是当我调用这个脚本时,bash $HOME/bin/perf ...
一切都按预期工作。但是,以下两个调用失败(附加错误):
perf ...
- 甚至将其放在工作目录中并调用为
./perf ...
改变 shebang 来/usr/bin/env bash
解决这个问题,但 /usr/bin/sh
指向/usr/bin/bash
我的系统。