Created
February 27, 2020 05:02
-
-
Save iwata-n/ee6e984c1517edecd1dbee4674ac5ede to your computer and use it in GitHub Desktop.
logcatを色付けしてターミナルに表示するワンライナー
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
adb logcat -v time | awk '/^.* V\/.*$/ { print "\033[0m" $0 }; /^.* D\/.*$/ { print "\033[0;34m" $0 "\033[0m" }; /^.* I\/.*$/ { print "\033[0;32m" $0 "\033[0m" }; /^.* W\/.*$/ { print "\033[0;31m" $0 "\033[0m" }; /^.* E\/.*$/ { print "\033[1;31m" $0 "\033[0m" }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment