In a long line in systemctl status it's necessary to scroll horizontally which makes it quite hard to copy the output. Is there a way to get linebreaks at the end of terminal (like nano -$ would do)?
I'm not looking for a workaround like redirecting the output into a temporary file and displaying it with an editor which supports the output.
I'm using Ubuntu 15.10.
--fullto the the long line in the process tree broken. I have to do it. Thanks. – Kalle Richter Mar 18 '16 at 01:06--full, but outputting to a pipe (head) took out the need for that, and at some point I ended up thinking it just wouldn't have been useful when used in conjunction with--no-pager. You actually need--full. – kos Mar 18 '16 at 01:19alias status='systemctl status --no-pager -l'to my~/.bash_aliasesfile (you can create this file if it doesn't exist on your system). After sourcing the file with$ source ~/.bash_aliases, you can use$ sudo status apache2.service(for instance) to get sensible output with less to remember. – Borea Deitz Sep 27 '25 at 13:21