你可以把它想象成一个非常简单的秒表。我试图破解一个bash脚本,它显示自指定日期以来经过的时间并每秒更新输出。
首先,在脚本中指定一个UNIX日期:Fri Apr 14 14:00:00 EDT 2011
。这将是秒表开始的时候。
现在,当你运行脚本时,你会看到......
06d:10h:37m:01s
几秒钟后你会看到......
06d:10h:37m:05s
我不打算每过一秒就打印一条新线。该脚本应该只有1行输出,并且每秒更新一次。显然你可以随时退出脚本并重新启动它,因为开始时间是硬编码的,所以它仍然是正确的。
有什么想法吗?
答案 0 :(得分:5)
我在长时间运行的脚本中使用以下代码段。 定时器在一个函数(单独的进程)中运行,如果主进程被keybord中断终止,它将被终止(陷阱)。输出显示从计时器开始经过的时间:
... working [hh:mm:ss] 00:07:58
摘录:
#=== FUNCTION ================================================================
# NAME: progressIndicatorTime
# DESCRIPTION: Display a progress indicator with seconds passed.
# PARAMETERS: [increment] between 1 and 60 [sec], default is 2 [sec]
#===============================================================================
function progressIndicatorTime ()
{
declare default=2 # default increment [sec]
declare increment="${1:-$default}" # 1. parameter or default
declare format='\b\b\b\b\b\b\b\b%02d:%02d:%02d' # time format hh:mm:ss
declare timepassed=0
declare seconds minutes hours
[[ ! "$increment" =~ ^([1-9]|[1-5][0-9]|60)$ ]] && increment=$default
printf " ... working [hh:mm:ss] 00:00:00"
while : ; do # infinite loop
((seconds=timepassed%60))
((minutes=timepassed/60))
((hours=minutes/60))
((minutes=minutes%60))
printf "$format" $hours $minutes $seconds
sleep $increment || break # sleep ...
((timepassed+=increment))
done
} # ---------- end of function progressIndicatorTime ----------
progressIndicatorTime & # run progress indicator
declare progressIndicatorPid=${!} # save process ID
trap "kill $progressIndicatorPid" INT TERM # trap keyboard interrupt
#
# run long command
#
kill -s SIGTERM $progressIndicatorPid # terminate progress indicator
答案 1 :(得分:2)
艺术可以使用一些工作,但尝试一下:
#!/bin/bash
ref_date='Thu Apr 19 17:07:39 CDT 2012'
ref_sec=$(date -j -f '%a %b %d %T %Z %Y' "${ref_date}" +%s)
update_inc=1
tput clear
cat <<'EOF'
[|] [|]
_-'''''''''''''-_
/ \
| |
| |
| |
\ /
'-_____________-'
EOF
while :
do
((sec=$(date +%s) - ${ref_sec}))
((day=sec/86400))
((sec-=day*86400))
((hour=sec/3600))
((sec-=hour*3600))
((min=sec/60))
((sec-=min*60))
tput cup 6 14
printf "%.2id:%.2ih:%.2im:%.2is\r" ${day} ${hour} ${min} ${sec}
sleep ${update_inc}
done
exit 0
请注意,第一个date命令的语法适用于OSX。
对于GNU日期,请使用date --date="${ref_date}" +%s
答案 2 :(得分:1)
如果您有Bash4或ksh93,则可以使用printf %()T
语法打印strftime
格式。以下示例是您希望的格式的Bash 4打印。 Bash精度限制为1秒。 ksh93支持浮点数,需要进行一些修改。
#!/usr/bin/env bash
# To supply a default date/time. To use now as the default, leave empty, or run with a null first arg.
deftime='Fri Apr 14 14:00:00 EDT 2011'
if (( ${BASH_VERSINFO[0]}${BASH_VERSINFO[1]} >= 42 )); then
unixTime() {
printf ${2+-v "$2"} '%(%s)T' -1
}
else
unixTime() {
printf ${2+-v "$2"} "$(date '+%s')"
}
fi
stopWatch() {
local timestamp="$(date ${1:+'-d' "$1"} '+%s')" curtime day=$((60*60*24)) hour=$((60**2))
# unixTime -1 timestamp
while
unixTime -1 curtime
(( curtime -= timestamp ))
printf '%02dd:%02dh:%02dm:%02ds\r' $(( curtime / day )) $(( (curtime / hour) % 24 )) $(( (curtime / 60) % 60 )) $(( curtime % 60 ))
do sleep 1
done
}
stopWatch "${1-deftime}"
您可能也对$SECONDS
变量感兴趣。不幸的是,没有方便的方式接受你想要的人类可读日期。这需要大量的解析工作。 date命令(特别是GNU日期)可以在有限的范围内完成。