Created
March 19, 2011 07:49
-
-
Save nefo-mi/877316 to your computer and use it in GitHub Desktop.
logを見やすくするワンライナー(zsh依存)
This file contains 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
% 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