From 976e9606cff294d79b7b2457388094f116bb59b5 Mon Sep 17 00:00:00 2001 From: Patrick Kostas Date: Sun, 9 May 2021 19:54:42 +0200 Subject: [PATCH] journalctl: emphasize command line argument in example descriptions (#5913) --- pages/linux/journalctl.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/linux/journalctl.md b/pages/linux/journalctl.md index f0e252704..c1eefe149 100644 --- a/pages/linux/journalctl.md +++ b/pages/linux/journalctl.md @@ -2,23 +2,23 @@ > Query the systemd journal. -- Show all messages from this boot: +- Show all messages from this [b]oot: `journalctl -b` -- Show all messages from last boot: +- Show all messages from last [b]oot: `journalctl -b -1` -- Show all messages with priority level 3 (errors) from this boot: +- Show all messages with priority level 3 (errors) from this [b]oot: `journalctl -b --priority={{3}}` -- Follow new messages (like `tail -f` for traditional syslog): +- [f]ollow new messages (like `tail -f` for traditional syslog): `journalctl -f` -- Show all messages by a specific unit: +- Show all messages by a specific [u]nit: `journalctl -u {{unit}}`