From 776bea641fb1b1bf448adce4b791633120984348 Mon Sep 17 00:00:00 2001 From: Umair Khurshid <87898890+Umair-khurshid@users.noreply.github.com> Date: Fri, 18 Apr 2025 17:46:59 +0500 Subject: [PATCH] abrt-cli: add page (#16189) Co-authored-by: Wiktor Perskawiec Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/abrt-cli.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/abrt-cli.md diff --git a/pages/linux/abrt-cli.md b/pages/linux/abrt-cli.md new file mode 100644 index 0000000000..129b11fc44 --- /dev/null +++ b/pages/linux/abrt-cli.md @@ -0,0 +1,29 @@ +# abrt-cli + +> Automatic Bug Reporting Tool for Fedora-based systems. +> Used to detect, analyze, and report application crashes. +> More information: . + +- List detected problems: + +`abrt-cli list` + +- Show details of a specific problem: + +`abrt-cli info {{problem_id}}` + +- Remove a crash report: + +`abrt-cli remove {{problem_id}}` + +- Report a problem to the configured bug tracker (e.g. Bugzilla): + +`abrt-cli report {{problem_id}}` + +- Monitor a log file and trigger a program when a match is found: + +`abrt-watch-log -F {{error_string}} {{/var/log/myapp.log}} {{notify-send "Crash detected"}}` + +- Generate a report for debugging manually: + +`abrt-cli report --analyze {{problem_id}}`