Skip to content

Instantly share code, notes, and snippets.

@akanehara
Created July 26, 2016 01:43
Show Gist options
  • Save akanehara/e7ecb3e4503611a2d48af30af7131a4e to your computer and use it in GitHub Desktop.
Save akanehara/e7ecb3e4503611a2d48af30af7131a4e to your computer and use it in GitHub Desktop.
AWKワンライナースニペット
# 時間ごと集計
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