mirror of https://gitlab.com/dabruh/dotfiles.git
7 lines
127 B
Plaintext
7 lines
127 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Simple console CSV viewer
|
||
|
|
||
|
file="${1:?}" || exit 1
|
||
|
sed -e 's/,,/, ,/g' "$file" | column -s, -t | less -#5 -N -S
|