比如:统计每天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里使用日期比较,各种坑,填不平囧。
请问有更好的办法吗?
Mengapa anda mesti menggunakan shell+awk
Tidak bolehkah php atau python berfungsi?
Anda boleh menggunakan python