Simple CSV viewer.

This commit is contained in:
dabruh 2022-05-29 22:36:19 +02:00
parent d20ec5a87f
commit 675d7c162e
1 changed files with 6 additions and 0 deletions

6
.local/bin/csview Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Simple console CSV viewer
file="${1:?}" || exit 1
sed -e 's/,,/, ,/g' "$file" | column -s, -t | less -#5 -N -S