1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/visidata/README.md

22 lines
565 B
Markdown
Raw Normal View History

2024-12-03 08:24:20 +02:00
visidata
========
[VisiData][1] is a terminal interface for exploring and arranging tabular data.
VisiData supports tsv, csv, sqlite, json, xlsx (Excel), hdf5, and many other formats.
## Tutorial
```bash
# Create an alias
2024-12-03 08:27:28 +02:00
$ 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'
2024-12-03 08:24:20 +02:00
# Create a csv file
$ echo -e 'a,b\n1,2\n3,4' > input.csv
# View the csv file
$ vd input.csv
```
[1]: https://github.com/saulpw/visidata