mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-21 01:27:01 +02:00
.. | ||
Dockerfile | ||
README.md |
visidata
VisiData is a terminal interface for exploring and arranging tabular data. VisiData supports tsv, csv, sqlite, json, xlsx (Excel), hdf5, and many other formats.
Tutorial
# Create an alias
$ alias vd='docker run --rm -it -u $(id -u):$(id -g) -v "$PWD:/data" -w /data vimagick/visidata'
$ alias visidata='docker run --rm -it -u $(id -u):$(id -g) -v "$PWD:/data" -w /data vimagick/visidata'
# Create a csv file
$ echo -e 'a,b\n1,2\n3,4' > input.csv
# View the csv file
$ vd input.csv