1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-21 01:27:01 +02:00
dockerfiles/visidata
2024-12-03 14:27:28 +08:00
..
Dockerfile add visidata 2024-12-03 14:24:20 +08:00
README.md fix visidata 2024-12-03 14:27:28 +08:00

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