Install latest/stable of tabular
Ubuntu 16.04 or later?
Make sure snap support is enabled in your Desktop store.
Convert tables of columns into something a bit more machine-readable, or a bit less wide.
$ df
Filesystem 1K-blocks Used Available Use% Mounted on
udev 8114516 0 8114516 0% /dev
tmpfs 1629484 3068 1626416 1% /run
$ df | tabular
Filesystem=udev
1K-blocks=8114516
Used=0
Available=8114516
Use%=0%
Mounted on=/dev
Filesystem=tmpfs
1K-blocks=1629484
Used=3068
Available=1626416
Use%=1%
Mounted on=/run
$ df | tabular --format json
[
{
"Filesystem": "udev",
"1K-blocks": "8114516",
"Used": "0",
"Available": "8114516",
"Use%": "0%",
"Mounted on": "/dev"
},
{
"Filesystem": "tmpfs",
"1K-blocks": "1629484",
"Used": "3068",
"Available": "1626416",
"Use%": "1%",
"Mounted on": "/run"
}
]
Thank you for your report. Information you provided will help us investigate further.
There was an error while sending your report. Please try again later.
You are about to open
Do you wish to proceed?
Generate an embeddable card to be shared on external websites.
Choose your Linux distribution to get detailed installation instructions. If yours is not shown, get more details on the installing snapd documentation.