mirror of https://gitlab.com/dabruh/dotfiles.git
Simple CSV viewer.
This commit is contained in:
parent
d20ec5a87f
commit
675d7c162e
|
@ -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
|
Loading…
Reference in New Issue