From 15a8422676946aaa37fb90af3272ce2561445777 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Thu, 14 Nov 2019 01:16:39 +0100 Subject: [PATCH] logcat: add page (#3562) --- pages/linux/logcat.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/linux/logcat.md diff --git a/pages/linux/logcat.md b/pages/linux/logcat.md new file mode 100644 index 0000000000..4d7b269c62 --- /dev/null +++ b/pages/linux/logcat.md @@ -0,0 +1,17 @@ +# logcat + +> Dump a log of system messages. +> Native Android CLI tool. +> More information: . + +- Display system logs: + +`logcat` + +- Write system logs to a file: + +`logcat -f {{path/to/file}}` + +- Display lines that match a regex: + +`logcat --regex {{regex}}`