从命令行观察更多债务

作者:Mitch Frazier

那些看过我们的 技术技巧视频 的朋友可能已经看过我的视频,内容是关于如何从命令行 获取美国国债数据。 这里包含的脚本使用了我在那里开发的思路,并将其扩展为两次获取债务,两次之间可以选择暂停,然后显示在暂停期间债务增加的金额。

您可以通过以下方式使用该脚本

bash ndebt.sh 10
bash ndebt.sh 3:10
bash ndebt.sh 1:15:10

该脚本的参数是暂停时间,可以以秒、分:秒或时:分:秒为单位给出。 脚本首先获取债务,暂停请求的时间,然后再次获取债务,并打印出债务增加的金额。

例如,这里我们运行脚本并指定时间为 20 秒

$ bash ndebt.sh 20
During the last 20 seconds the US National Debt has increased by 901128.13

脚本本身如下

#!/bin/bash


# Check for pause time.
pause_time=0

if [[ "$1" ]]; then
	if   [[ $1 =~ ^([0-9]+):([0-9]+):([0-9]+)$ ]]; then
		pause_time=$(((${BASH_REMATCH[1]}*60*60) + (${BASH_REMATCH[2]}*60) + (${BASH_REMATCH[3]})))
	elif [[ $1 =~ ^([0-9]+):([0-9]+)$ ]]; then
		pause_time=$(((${BASH_REMATCH[1]}*60) + (${BASH_REMATCH[2]})))
	elif [[ $1 =~ ^([0-9]+)$ ]]; then
		pause_time=$1
	else
		echo "Bad pause time: $1" >&2
		exit 1
	fi
fi


# Get national debt.
function get_debt()
{
	local t=$(wget --quiet http://brillig.com/debt_clock -O - | grep debtiv.gif)

	t=$(sed -e 's/.*ALT="\$//' -e 's/".*//' -e 's/[ ,]//g' <<<$t)
	echo $t
}

# Print time item.
# Pass time value and one of 'hour', 'minute', 'ssecond'.
function fmt_time()
{
	local t=$1
	local p=$2
	if [[ $t -gt 0 ]]; then
		if [[ $t -eq 1 ]]; then
			printf '%d %s' $t $p
		else
			printf '%d %ss' $t $p
		fi
	fi
}

# Print the elapsed time between the first and second argument.
# Times given in seconds.
# Earliest time is first arugment.
function elapsed_time()
{
	local st=$1
	local et=$2
	local dt=$((et - st))
	local ds=$((dt % 60))
	local dm=$(((dt / 60) % 60))
	local dh=$((dt / 3600))
	
	echo $(fmt_time $dh 'hour') $(fmt_time $dm 'minute') $(fmt_time $ds 'second')
}


######################################################################

stime=$(date +%s)
sdebt=$(get_debt)

if [[ $pause_time -gt 0 ]]; then sleep $pause_time; fi

etime=$(date +%s)
edebt=$(get_debt)

t=$(elapsed_time $stime $etime)
d=$(bc <<<"scale=2; $edebt - $sdebt")

printf "During the last %s the US National Debt has increased by %s\n" "$t" "$d"


## vim: tabstop=4: shiftwidth=4: noexpandtab:
## kate: tab-width 4; indent-width 4; replace-tabs false;

脚本的第一部分使用 bash 的正则表达式比较运算符 (=~) 来查看传递的参数是否是有效时间。 然后是几个函数。

第一个函数,get_debt(),从 brillig.com 获取债务页面,然后提取并清理债务数字。 债务数字是从页面顶部的图像的alt属性中提取的。 其中的字符串包含空格、逗号和美元符号,这些都将被删除,以便给我们一个可用的数字。

第二个函数fmt_time()为我们的输出格式化时间组件。 例如,fmt_time 2 second打印 "2 seconds"(2 秒),fmt_time 0 second打印 "" (一个空字符串)。

第三个函数,elapsed_time()接受两个以秒为单位的时间值,并计算两者之间的差异。 然后以可读的方式格式化经过的时间。 例如elapsed_time 0 3659打印 "1 hour 59 seconds"(1 小时 59 秒)。

之后是主代码。 它记录开始时间,获取初始债务,然后暂停。 暂停后,它记录结束时间并获取结束债务。 然后bc用于计算差值,并打印结果。 请注意,打印的时间是实际经过的时间,因此它可能与您在命令行中请求的经过时间略有不同,但通常只有一两秒的差异。

Mitch Frazier 是 Emerson Electric Co. 的嵌入式系统程序员。 自 2000 年代初以来,Mitch 一直是 Linux Journal 的贡献者和朋友。

加载 Disqus 评论