shell - git如何统计每天指定时间段的提交
淡淡烟草味
淡淡烟草味 2017-05-02 09:34:25
0
2
575

比如:统计每天21点后凌晨5点前的提交记录。
查阅各种文档,各种google后,我用最笨的方法实现了:

git log --pretty=format:'%h %cn %cd %s' --date='format:%Y-%m-%d %H:%M:%S' | \
awk '{hour=0+substr($4,0,2); if(hour>21 || hour<5) printf "%-10s %-15s %-12s %-10s %-10s\n", $1, $2, $3, $4, $5 }'

但看起来不够优雅,想在awk里使用日期比较,各种坑,填不平囧。
请问有更好的办法吗?

淡淡烟草味
淡淡烟草味

reply all(2)
我想大声告诉你

Why you must use shell+awk

php and python not working

小葫芦

Can use python

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template