tabular

Install latest/stable of tabular

Ubuntu 16.04 or later?

Make sure snap support is enabled in your Desktop store.


Install using the command line

sudo snap install tabular

Don't have snapd? Get set up for snaps.

Channel Version Published

Parse ASCII tabular data, such as the output from docker ps or netstat -tanp.

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"
   }
 ]

Details for tabular

License
  • Unlicense

Last updated
  • 23 May 2020 - latest/stable
  • 4 December 2020 - latest/edge

Websites

Contact

Share this snap

Generate an embeddable card to be shared on external websites.


Install tabular on your Linux distribution

Choose your Linux distribution to get detailed installation instructions. If yours is not shown, get more details on the installing snapd documentation.


Where people are using tabular

Users by distribution (log)

Ubuntu 22.04
Ubuntu 20.04

Is there a problem with tabular? Report this app