[systemd-devel] journalctl --unit and pattern
Kai Krakow
hurikhan77 at gmail.com
Mon Dec 18 21:53:29 UTC 2017
Am Mon, 18 Dec 2017 18:01:21 +0100 schrieb Cecil Westerhof:
> At the moment I am using:
> journalctl --boot --follow --no-tail --unit storeSystemStatistics
> --unit vmstatLog
>
> But instead of unit names you should be able to use a pattern. I tried the
> following:
> --unit "storeSystemStatistics|vmstatLog"
>
> And variants on it, but could not make it work.
>
> How should I use a pattern. (I could not find info about it.)
You can exploit bash expansion for that:
$ journalctl --boot --follow --notail --unit={storeSystemStatistics,vmstatLog}
Note the equal sign...
The curly braces will the be expanded into two separate unit parameters
before being passed to the journalctl command.
--
Regards,
Kai
Replies to list-only preferred.
More information about the systemd-devel
mailing list