mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
calculating command's execution time
This commit is contained in:
parent
135c3763cc
commit
96d10e2147
1 changed files with 18 additions and 0 deletions
18
plugins/timer/timer.plugin.zsh
Normal file
18
plugins/timer/timer.plugin.zsh
Normal file
|
@ -0,0 +1,18 @@
|
|||
preexec() {
|
||||
__timer_cmd_start_time=$(date '+%s')
|
||||
}
|
||||
|
||||
precmd() {
|
||||
if [ -n "${__timer_cmd_start_time}" ]; then
|
||||
local cmd_end_time=$(date '+%s')
|
||||
local tdiff=$((${cmd_end_time} - ${__timer_cmd_start_time}))
|
||||
unset __timer_cmd_start_time
|
||||
local tdiffstr='/'
|
||||
if (( tdiff >= 60 )); then
|
||||
tdiffstr+="$((tdiff / 60))m"
|
||||
fi
|
||||
tdiffstr+="$((tdiff % 60))s"
|
||||
local cols=$(($COLUMNS - ${#tdiffstr} - 1))
|
||||
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
|
||||
fi
|
||||
}
|
Loading…
Reference in a new issue