私のプログラムが完了するのにかかる時間(経過時間とも呼ばれる)を取得しようとしているので、一般的なtime
。
これにより、ユーザー、システム、全体という3つの測定値が得られました。大丈夫です。しかし、私が興味を持っているユーザーの時間は、小数点以下の2桁までに過ぎず、より多くの時間が必要であることがわかりました。時間コマンドで小数点以下の桁数を増やす方法はありますか?
例:time ./myCProgram
出力: 0.17s ユーザー 1.21s システム 130% CPU 0.187 合計
希望の出力: 0.17000s ユーザー 1.21s システム 130% CPU 0.187 合計 (またはより少数の桁数)
答え1
必要なものが経過時間だけの場合は、zshまたはksh93を使用してください。
$ typeset -F SECONDS=0; sleep 1; print "$SECONDS"
1.0012850761
今、この精度が意味があるかどうかは別の問題です。
答え2
計算する時間存在するナノ秒下にGNU/Linux
、使用強く打つ。
警告するこの記事は、そこで議論された新しい良い方法のために使用されなくなりました。bash分析(回答3個)そしていっぱい利用できる 強く打つソースファイルは次のとおりです。Elap-bash V3
信頼できる値を取得する方法
1秒より詳細な時間を要求する方法があります。
まず、最高ではありませんが:1/100秒
1/100秒については、以下を簡単に参照できます/proc/uptime
。
sed 's/ .*$//' /proc/uptime
276440.58
これ時間オフセット実際のUTC時間を計算するためのコンテンツの追加は、次のいずれかの方法で取得できます。
ps ho lstart 1 | date -f - +%s
1357193821
または
date +%s.%N-$(sed 's/ .*$//' /proc/uptime ) | bc -l
1357193821.088187101
オフセットは静的であるため、スクリプトの先頭から値を一度だけ計算できます。
1/1000000000秒、proc
アイテムのみ使用:
計算に使用ナノ秒、および の両方を含むproc entry
名前があります。/proc/timer_list
uptime
offset
sed < /proc/timer_list -ne '/now at/p;/offset/{p;q}'
now at 276350507668586 nsecs
.offset: 1357193821075753443 nsecs
だからこれ
echo $(($(sed < /proc/timer_list -ne '
/^now at/{s/now at \([0-9]*\) ns.*$/\1/;H};
/offset/{s/^.*: *\([0-9]*\) ns.*$/\1/;G;s/\n\+/+/;p;q}')))
1357470173543424035
~である整数数量ナノ秒過去から1970-1-1 00:00:00 UTC
。
より低い整数を計算するために使用されます。強く打つ、procファイルを使用してbc
解析する必要はありません。mapfile
バッシュ内蔵:
# first, some static variables (with fork, but only 1 time, at begin;):
nowAtLine=$(($(sed -ne < /proc/timer_list '/now at/{=;q}')-1))
offset=$(sed -ne < /proc/timer_list '
/offset/{s/^.*: *\([0-9]*\) n.*$/\1/p;q}')
# than this will be a lot quicker than a fork:
mapfile -n 1 -s $nowAtLine timerList </proc/timer_list &&
timerList=($timerList) &&
echo $((${timerList[2]}+offset))
1357470173543424035
1/1000000000秒、date
バイナリツールの使用:
最後に、存在しない場合は、bashセッションにとどまって読み込むよりも時間がかかることを覚えてdate
おくことができます。fork
proc files
date +%s%N
1357470074808968375
私のelap.bash
機能
これに基づいて書いたelap bash 機能、2つのカウンターがあります。各通貨ごとに1つずつ、各通貨ごとに1つずつoverall duration
。
使用法:
まず、これ機能、一つでもないスクリプト。source
これを使用するには、現在のbashセッションにいる必要があります。
. elap.bash
文法:
elap [ [ -r | -R ] | [ -n ] [ -t | -T ] [<simple text report>] ]
-r reset first counter only, don't output anything, like -R...
-R reset both counters, (both -r and -R must by unique argument)
-n don't reset any counter (just print)
-t print both counters (reset first counter)
-T print and reset
使用前に両方のカウンタをリセットしてください。
elap -R
find /usr/bin >/dev/null
elap browsing /usr/bin
0.025389543 browsing /usr/bin
したがって、スクリプトにいくつかのタグを追加できます。
#!/bin/bash
. elap.bash
elap -R
tar -cf /tmp/test.tar -C / bin
elap making a tarball of $(stat -c %s /tmp/test.tar) bytes
gzip /tmp/test.tar
elap compressing them to $(stat -c %s /tmp/test.tar.gz) bytes
scp /tmp/test.tar.gz [email protected]:backups/
elap sending file to backup server
rm /tmp/test.tar.gz
elap removing compressed tarball
elap -t total duration
0.043223957 making a tarball of 5877760 bytes
0.667249628 compressing them to 2742537 bytes
test.tar.gz 100% 2678KB 2.6MB/s 00:00
0.380779818 sending file to backup server
0.010262259 removing compressed tarball
0.003566335 1.105081997 total duration
trap debug
次の目的に使用されます。段階的に
スイッチを使用または使用せずに段階的に使用し、-t
スクリプトの変更数を減らします(スクリプトの上部に4行、下部に1行を追加)。trap debug
罠としてデバッグ起こるだろう今後 $BASH_COMMAND
実行時に正しい印刷のために、変数の内容を$BASH_LAST
変数に保存して追加する必要があります。偽コマンドはスクリプトの下部にあります。
#!/bin/bash
. elap.bash
elap -R
export BASH_LAST=Starting
trap 'elap -t $BASH_LAST;BASH_LAST=$BASH_COMMAND' debug
tar -cf /tmp/test.tar -C / bin
gzip /tmp/test.tar
scp /tmp/test.tar.gz [email protected]:backups/
rm /tmp/test.tar.gz
exit $?
exit $?
このコマンドは統計をダンプするために必要です。後ろに最後のrm
コマンドです。
0.001011086 0.001011086 Starting
0.045175969 0.046187055 tar -cf /tmp/test.tar -C / bin
0.651394209 0.697581264 gzip /tmp/test.tar
test.tar.gz 100% 2678KB 2.6MB/s 00:00
0.374499354 1.072080618 scp /tmp/test.tar.gz [email protected]:backups/
0.007160101 1.079240719 rm /tmp/test.tar.gz
関数ソースコード
uptime
1/100秒単位を使用する代わりにフォークを使用したい場合は、date +%s%N
セクションを切り取りまたは並べ替えることができます。
#
# Bash source file for fine elapsed time reporting
# based on /proc/timer_list, display elapsed time in nanosecs
# or /proc/uptime if timer_list not present, for 100th of secs.
# if none of them if present, fall back to *fork* `date +%s%N`.
#
# (C) 2011-2012 Felix Hauri - [email protected]
# Licensed under terms of LGPL v3. www.gnu.org
# Usage:
# load script into bash using ``source elap.bash''
#
# Syntaxe: elap [ [ -r | -R ] | [ -n ] [ -t | -T ] [<simple text report>] ]
# -r reset first counter only, don't output anything, like -R...
# -R reset both counters, (both -r and -R must by unique argument)
# -n don't reset any counter (just print)
# -t print both counters (reset first counter)
# -T print and reset
#
# nota: using ``-n'' in combinaison with any of ``-r'' or ``-R'' is buggy.
export _elaP_now _elaP_last _elaP_elap _elaP_last2 _elaP_dec
if [ -r /proc/timer_list ] ;then
_elaP_file=/proc/timer_list
_elaP_dec=9
_elaP_field=2
mapfile < $_elaP_file _elaP_now
_elaP_line=0
while [ "${_elaP_now[_elaP_line]}" == \
"${_elaP_now[_elaP_line]#*now at}" ] ;do
((_elaP_line++))
done
eval 'function elap_getNow() {
mapfile -n 1 -s '$_elaP_line' <'$_elaP_file' _elaP_now
_elaP_now=($_elaP_now)
_elaP_now=${_elaP_now[_elaP_field]}
}'
else
# --- To be removed for nanoseconds only
if [ -r /proc/uptime ] ;then
_elaP_dec=2
function elap_getNow() {
read -a _elaP_now </proc/uptime _elaP_now
_elaP_now=${_elaP_now//./}
}
else # --- End of part to be removed for ns only.
_elaP_dec=9
function elap_getNow() { _elaP_now=$(date +%s%N) ;}
fi # --- Remove this line too for ns only.
fi
export -f elap_getNow
elap() {
local _Z9=000000000
local _elaP_setLast=true
[ "$1" == "-n" ] && shift && _elaP_setLast=false
[ "$2" == "-n" ] && set -- $1 ${@:3} && _elaP_setLast=false
elap_getNow
_elaP_elap=$((_elaP_now - _elaP_last))
[ ${#_elaP_elap} -lt $_elaP_dec ] && \
_elaP_elap=${_Z9:0:_elaP_dec-${#_elaP_elap}}$_elaP_elap
[ "${*}" == "-R" ] && _elaP_last2=$_elaP_now || \
[ "${*}" == "-r" ] || if [ "$1" == "-t" ] || [ "$1" == "-T" ] ;then
local _elaP_setLast2=false
[ "$1" == "-T" ] && _elaP_setLast2=true
shift
_elaP_elap2=$((_elaP_now - _elaP_last2))
[ ${#_elaP_elap2} -lt $_elaP_dec ] && \
_elaP_elap2="${_Z9:0:_elaP_dec-${#_elaP_elap2}}$_elaP_elap2"
printf "%6d.%s %6d.%s %s\n" \
"${_elaP_elap:0:${#_elaP_elap}-$_elaP_dec}" \
"${_elaP_elap:${#_elaP_elap}-_elaP_dec}" \
"${_elaP_elap2:0:${#_elaP_elap2}-$_elaP_dec}" \
"${_elaP_elap2:${#_elaP_elap2}-_elaP_dec}" "${*}"
$_elaP_setLast2 && _elaP_last2=$_elaP_now
else
printf "%6d.%s %s\n" \
"${_elaP_elap:0:${#_elaP_elap}-$_elaP_dec}" \
"${_elaP_elap:${#_elaP_elap}-_elaP_dec}" "${*}"
fi
$_elaP_setLast && _elaP_last=$_elaP_now
}
export -f elap