How can I install the util linux version of the column command in 18.04?
There is a bug report on this problem you can subscribe to. The more people that subscribe the greater chances it will be fixed:
The 'column' program included in upstream util-linux (https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/text-utils/column.c) is newer than the included in the bsdmainutil package (https://anonscm.debian.org/cgit/bsdmainutils/bsdmainutils.git/tree/usr.bin/column/column.c). However, debian/rules from util-linux package states the opposite, and therefore Ubuntu now is using 'column' from bsdmainutils instead of the util-linux one.
I am on Ubuntu 18.04 and using the new version of column.
My exact steps were:
- Download version 2.35 tar.gz (~10MB)
- Extract the compressed contents (right click, extract)
- Inside the new folder,
./configure
, thenmake
. - Moved the newly created column binary into my path as column2 just in case something was relying on the BSD version.
- Profit.
New column is amazing, just for the record.