Skip to content

Instantly share code, notes, and snippets.

@nefo-mi
Created March 19, 2011 07:49
Show Gist options
  • Save nefo-mi/877316 to your computer and use it in GitHub Desktop.
Save nefo-mi/877316 to your computer and use it in GitHub Desktop.
logを見やすくするワンライナー(zsh依存)
% cat nantoka.log
START TIME: 2011/03/17 12:00:22
hoge
END TIME: 2011/3/17 13:00:43
huga
START TIME: 2011/03/17 13:06:22
hago
END TIME: 2011/3/17 13:30:43
START TIME: 2011/03/17 14:01:22
are
sore
dore
END TIME: 2011/3/17 16:00:00
nani
% paste <(grep "START TIME" nantoka.log) <(grep "END TIME" nantoka.log)
START TIME: 2011/03/17 12:00:22 END TIME: 2011/3/17 13:00:43
START TIME: 2011/03/17 13:06:22 END TIME: 2011/3/17 13:30:43
START TIME: 2011/03/17 14:01:22 END TIME: 2011/3/17 16:00:00
%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment