Commit 96d10e21 authored by Robert Strack's avatar Robert Strack
Browse files

calculating command's execution time

parent 135c3763
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
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment