mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 05:22:11 +02:00
523 B
523 B
logcat
Gib ein Protokoll aller System-Logs aus. Weitere Informationen: https://developer.android.com/tools/logcat.
- Gib ein Protokoll aller System-Logs aus:
logcat
- Schreibe alle System-Logs in eine Datei:
logcat -f {{pfad/zu/datei}}
- Gib Zeilen aus, die einem regulären Ausdruck entsprechen:
logcat --regex {{regex}}
- Gib System-Logs für die spezifizierte PID aus:
logcat --pid {{pid}}
- Gib System-Logs für den Prozess eines bestimmten Packets aus:
logcat --pid $(pidof -s {{packet}})