diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2021-05-18 15:21:50 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-05-18 19:15:24 +0200 |
commit | 4c6ad5705584f9d76a67b0688ba66aef2eca66dc (patch) | |
tree | cc08736c7704d7f468930c67f0f1281bde9716a6 /utils | |
parent | 0ad417b315cb1259a2943b84edba602d3ddacfa4 (diff) | |
download | hurd-4c6ad5705584f9d76a67b0688ba66aef2eca66dc.tar.gz hurd-4c6ad5705584f9d76a67b0688ba66aef2eca66dc.tar.bz2 hurd-4c6ad5705584f9d76a67b0688ba66aef2eca66dc.zip |
utils/ps.c: Don't limit output width to 80 on non-tty
If no output width limit has been set explicitly, and we're not printing
to a tty, do not limit output width.
In particular, this fixes grepping ps output.
Message-Id: <20210518122150.1490468-1-bugaevc@gmail.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ps.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -367,6 +367,11 @@ main(int argc, char *argv[]) /* Parse our command line. This shouldn't ever return an error. */ argp_parse (&argp, argc, argv, 0, 0, 0); + /* If no output width limit has been set explicitly, and we're not printing + to a tty, do not limit output width. */ + if (output_width == -1 && !isatty (STDOUT_FILENO)) + output_width = 0; + msgids_scan_std (); err = proc_stat_list_create(context, &procset); |