How can I keep long strings from truncating in terminal? For example if I run
journalctl -xn
There's a lot of text that I cannot read. I am open to using other programs/tools.
How can I keep long strings from truncating in terminal? For example if I run
journalctl -xn
There's a lot of text that I cannot read. I am open to using other programs/tools.
From the journalctl manpage:
The output is paged through less by default, and long lines are
"truncated" to screen width. The hidden part can be viewed by using the
left-arrow and right-arrow keys. Paging can be disabled; see the
--no-pager option and the "Environment" section below.
If you don't want to constantly be using the left and right arrow keys, simply pipe it directly to less:
$ journalctl -xn | less
This will wrap lines that are too long for your terminal (the default behavior of less, which journalctl overrides).
Or, of course, if you don't mind possibly having to use your terminal's scrollback, you could use no pager at all:
$ journalctl -xn --no-pager
less, and LESS does not include -S, journalctl should not be applying -S to the invocation of less!! That is, setting PAGER=less and LESS=$x (where $x is any string that does not contain S) should give the desired behavior.
– William Pursell
Nov 11 '18 at 13:19
grep?
– Pablo A
Jul 17 '21 at 20:11
SYSTEMD_LESS="FRXMK" journalctl - note excluded S
– wick
Dec 29 '23 at 12:41
I also do:
journalctl -xn | less
But you can also set the SYSTEMD_LESS environment variable:
SYSTEMD_LESS=FRXMK journalctl -xn
# Or even
# SYSTEMD_LESS="" journalctl -xn
# The environment variable needs to be there, but can be the empty string
I got that from: [systemd-devel] [PATCH] pager: wrap long lines by default
Set it in your .bashrc and be done with it! :-)
That systemd needs to setup less specially and doesn't just honor the less defaults and the LESS environment seems a little arrogant to me, but hey, this works...
Defaults env_keep += "LESS SYSTEMD_LESS" to /etc/sudoers. It's for those times when I accidentally put sudo in front of e.g. systemctl status.
– Metamorphic
Sep 14 '18 at 17:51
If the program already uses less (if not, pipe the output to it), you can enable/disable line wrapping by typing -S (in less), This works for other less options as well.
Note also that:
journalctl -f
will show you all the latest as it comes in and wrap like any normal human being (or even sysadmin) would expect to allow easy reading, copy-pasting, and everything else.
$ SYSTEMD_PAGER="less +-S" journalctl
+ executes command on start and -S disable chopping.
You can also set this value for a session or save in rc/profile script.
This is the command I use for CentOS 7, which preserves coloring and wraps lines:
SYSTEMD_PAGER="less -r" journalctl
I type in terminal,
journalctl | more, works great for me then I use arrows up or down.
journalctl -x,-ndefault to 10 lines in log only. – cuonglm Sep 12 '15 at 02:24