diff options
author | Karel Zak | 2018-08-23 13:31:29 +0200 |
---|---|---|
committer | Karel Zak | 2018-08-23 13:34:43 +0200 |
commit | 2698f9ba887cb7e4a204ada72016b1c1192b17c1 (patch) | |
tree | 71a6bcfe5b2c2e5d4c2fc2695c232f31d393fd05 /Documentation | |
parent | libsmartcols: don't mark as extreme where average is zero (diff) | |
download | kernel-qcow2-util-linux-2698f9ba887cb7e4a204ada72016b1c1192b17c1.tar.gz kernel-qcow2-util-linux-2698f9ba887cb7e4a204ada72016b1c1192b17c1.tar.xz kernel-qcow2-util-linux-2698f9ba887cb7e4a204ada72016b1c1192b17c1.zip |
column: add --table-empty-lines
The option allows to add empty line to the table. The default behavior
is to ignore empty lines at all.
echo -e "A\nAA\nAAA\n\nAAAA" | ./column --table
A
AA
AAA
AAAA
$ echo -e "A\nAA\nAAA\n\nAAAA" | ./column --table --table-empty-lines
A
AA
AAA
AAAA
Addresses: https://github.com/karelzak/util-linux/issues/593
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/TODO | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Documentation/TODO b/Documentation/TODO index 22b28b005..cda52592b 100644 --- a/Documentation/TODO +++ b/Documentation/TODO @@ -8,11 +8,6 @@ cal - support another --reforms, see for example freebsd version https://github.com/freebsd/freebsd/blob/master/usr.bin/ncal/ncal.c#L72 -column ------- - - add option to NOT ignore empty lines - https://github.com/karelzak/util-linux/issues/593 - script ------ - think about optional "event" records in timing file to save information |