Created
July 26, 2016 01:43
-
-
Save akanehara/e7ecb3e4503611a2d48af30af7131a4e to your computer and use it in GitHub Desktop.
AWKワンライナースニペット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 時間ごと集計 | |
seq 10 | awk '{t=$1} t0&&t!=t0{print t0,a; a=0} {a++;t0=t}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment