Your message dated Mon, 28 Dec 2020 00:40:13 +0100
with message-id <[email protected]>
and subject line Re: Bug#955183: column's minimal output separation is
hardwired at 2
has caused the Debian Bug report #955183,
regarding column's minimal output separation is hardwired at 2
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
955183: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=955183
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: bsdmainutils
Version: 11.1.2+b1
Starting with:
Los_Angeles: Tue Jan 21 06:00 PM 2020
Chicago: Tue Jan 21 06:00 PM 2020
Taipei: Tue Jan 21 06:00 PM 2020
We pipe it through column -t:
Los_Angeles: Tue Jan 21 06:00 PM 2020
Chicago: Tue Jan 21 06:00 PM 2020
Taipei: Tue Jan 21 06:00 PM 2020
What we simply really want is:
Los_Angeles: Tue Jan 21 06:00 PM 2020
Chicago: Tue Jan 21 06:00 PM 2020
Taipei: Tue Jan 21 06:00 PM 2020
The only way to get it is via:
column -t | perl -pwle 's/\S\K / /g;'
because for some reason column(1)'s minimal output separation is hardwired at
two spaces, with no variable to make it e.g., 1. P.S., no value of -c helps.
--- End Message ---
--- Begin Message ---
Version: 2.36.1-3
* 積丹尼 Dan Jacobson <[email protected]> [201227 23:39]:
> We pipe it through column -t:
> Los_Angeles: Tue Jan 21 06:00 PM 2020
> Chicago: Tue Jan 21 06:00 PM 2020
> Taipei: Tue Jan 21 06:00 PM 2020
>
> What we simply really want is:
> Los_Angeles: Tue Jan 21 06:00 PM 2020
> Chicago: Tue Jan 21 06:00 PM 2020
> Taipei: Tue Jan 21 06:00 PM 2020
>
> The only way to get it is via:
> column -t | perl -pwle 's/\S\K / /g;'
> because for some reason column(1)'s minimal output separation is hardwired at
> two spaces, with no variable to make it e.g., 1. P.S., no value of -c helps.
util-linux' column does this just fine, with -o " ".
Note that -c does not change the *separator* width.
Chris
--- End Message ---