例如:統計每天21點後凌晨5點前的提交記錄。
查閱各種文檔,各種google後,我用最笨的方法實現了:
git log --pretty=format:'%h %cn %cd %s' --date='format:%Y-%m-%d %H:%M:%S' | \
awk '{hour=0+substr(,0,2); if(hour>21 || hour<5) printf "%-10s %-15s %-12s %-10s %-10s\n", , , , , }'
但看起來不夠優雅,想在awk裡使用日期比較,各種坑,填不平囧。
請問有更好的辦法嗎?
為什麼一定要用shell+awk
php、python不行麼
可以使用python