]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd-cat.xml
mkosi: Fix particle profile
[thirdparty/systemd.git] / man / systemd-cat.xml
CommitLineData
9aac0b2c 1<?xml version='1.0'?> <!--*-nxml-*-->
3a54a157 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
eea10b26 3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
db9ecf05 4<!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
9aac0b2c 5
dfdebb1b 6<refentry id="systemd-cat"
798d3a52
ZJS
7 xmlns:xi="http://www.w3.org/2001/XInclude">
8
9 <refentryinfo>
10 <title>systemd-cat</title>
11 <productname>systemd</productname>
798d3a52
ZJS
12 </refentryinfo>
13
14 <refmeta>
15 <refentrytitle>systemd-cat</refentrytitle>
16 <manvolnum>1</manvolnum>
17 </refmeta>
18
19 <refnamediv>
20 <refname>systemd-cat</refname>
21 <refpurpose>Connect a pipeline or program's output with the journal</refpurpose>
22 </refnamediv>
23
24 <refsynopsisdiv>
25 <cmdsynopsis>
dfa6c32a 26 <command>systemd-cat</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg>COMMAND</arg> <arg choice="opt" rep="repeat">ARGUMENTS</arg>
798d3a52
ZJS
27 </cmdsynopsis>
28 <cmdsynopsis>
dfa6c32a 29 <command>systemd-cat</command> <arg choice="opt" rep="repeat">OPTIONS</arg>
798d3a52
ZJS
30 </cmdsynopsis>
31 </refsynopsisdiv>
32
33 <refsect1>
34 <title>Description</title>
35
36 <para><command>systemd-cat</command> may be used to connect the
37 standard input and output of a process to the journal, or as a
38 filter tool in a shell pipeline to pass the output the previous
39 pipeline element generates to the journal.</para>
40
41 <para>If no parameter is passed, <command>systemd-cat</command>
42 will write everything it reads from standard input (stdin) to the
43 journal.</para>
44
45 <para>If parameters are passed, they are executed as command line
46 with standard output (stdout) and standard error output (stderr)
47 connected to the journal, so that all it writes is stored in the
48 journal.</para>
49 </refsect1>
50
51 <refsect1>
52 <title>Options</title>
53
54 <para>The following options are understood:</para>
55
56 <variablelist>
57 <xi:include href="standard-options.xml" xpointer="help" />
58 <xi:include href="standard-options.xml" xpointer="version" />
59
60 <varlistentry>
61 <term><option>-t</option></term>
62 <term><option>--identifier=</option></term>
63
64 <listitem><para>Specify a short string that is used to
65 identify the logging tool. If not specified, no identification
66 string is written to the journal.</para></listitem>
67 </varlistentry>
68
69 <varlistentry>
70 <term><option>-p</option></term>
71 <term><option>--priority=</option></term>
72
73 <listitem><para>Specify the default priority level for the
74 logged messages. Pass one of
75 <literal>emerg</literal>,
76 <literal>alert</literal>,
77 <literal>crit</literal>,
78 <literal>err</literal>,
79 <literal>warning</literal>,
80 <literal>notice</literal>,
81 <literal>info</literal>,
82 <literal>debug</literal>, or a
83 value between 0 and 7 (corresponding to the same named
84 levels). These priority values are the same as defined by
85 <citerefentry project='man-pages'><refentrytitle>syslog</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
86 Defaults to <literal>info</literal>. Note that this simply
87 controls the default, individual lines may be logged with
b938cb90 88 different levels if they are prefixed accordingly. For details,
798d3a52
ZJS
89 see <option>--level-prefix=</option> below.</para></listitem>
90 </varlistentry>
91
a08c3e8f
MS
92 <varlistentry>
93 <term><option>--stderr-priority=</option></term>
94
95 <listitem><para>Specifies the default priority level for
96 messages from the process's standard error output (stderr).
97 Usage of this option is the same as the
98 <option>--priority=</option> option, above, and both can be
99 used at once. When both are used, <option>--priority=</option>
100 will specify the default priority for standard output (stdout).
101 </para>
102
103 <para>If <option>--stderr-priority=</option> is not specified,
104 messages from stderr will still be logged, with the same
105 default priority level as stdout.</para>
106
107 <para>Also, note that when stdout and stderr use the same
108 default priority, the messages will be strictly ordered,
109 because one channel is used for both. When the default priority
110 differs, two channels are used, and so stdout messages will not
111 be strictly ordered with respect to stderr messages - though
ec07c3c8
AK
112 they will tend to be approximately ordered.</para>
113
114 <xi:include href="version-info.xml" xpointer="v241"/></listitem>
a08c3e8f
MS
115 </varlistentry>
116
798d3a52
ZJS
117 <varlistentry>
118 <term><option>--level-prefix=</option></term>
119
15102ced
ZJS
120 <listitem><para>Controls whether lines read are parsed for syslog priority level prefixes. If enabled
121 (the default), a line prefixed with a priority prefix such as <literal>&lt;5&gt;</literal> is logged
122 at priority 5 (<literal>notice</literal>), and similarly for the other priority levels. Takes a
123 boolean argument.</para></listitem>
798d3a52
ZJS
124 </varlistentry>
125
45bcab66
MY
126 <varlistentry>
127 <term><option>--namespace=</option></term>
128
129 <listitem><para>Specifies the journal namespace to which the standard IO should be connected.
130 For details about journal namespaces, see
131 <citerefentry><refentrytitle>systemd-journald.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
132 </para>
133
134 <xi:include href="version-info.xml" xpointer="v256"/></listitem>
135 </varlistentry>
136
798d3a52
ZJS
137 </variablelist>
138
139 </refsect1>
140
141 <refsect1>
142 <title>Exit status</title>
143
45bcab66 144 <para>On success, 0 is returned, a non-zero failure code otherwise.</para>
798d3a52
ZJS
145 </refsect1>
146
147 <refsect1>
148 <title>Examples</title>
149
150 <example>
151 <title>Invoke a program</title>
152
b0343f8c 153 <para>This calls <filename index="false">/bin/ls</filename>
798d3a52
ZJS
154 with standard output and error connected to the journal:</para>
155
156 <programlisting># systemd-cat ls</programlisting>
157 </example>
158
159 <example>
160 <title>Usage in a shell pipeline</title>
161
162 <para>This builds a shell pipeline also invoking
163 <filename>/bin/ls</filename> and writes the output it generates
164 to the journal:</para>
165
166 <programlisting># ls | systemd-cat</programlisting>
167 </example>
168
15102ced
ZJS
169 <para>Even though the two examples have very similar effects, the first is preferable, since only one
170 process is running at a time and both stdout and stderr are captured, while in the second example, only
171 stdout is captured.</para>
798d3a52
ZJS
172 </refsect1>
173
174 <refsect1>
175 <title>See Also</title>
13a69c12
DT
176 <para><simplelist type="inline">
177 <member><citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
178 <member><citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
179 <member><citerefentry project='man-pages'><refentrytitle>logger</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
180 </simplelist></para>
798d3a52 181 </refsect1>
9aac0b2c
LP
182
183</refentry>