mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-11 02:08:10 +01:00
6 lines
174 B
Bash
Executable file
6 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Simple console CSV viewer
|
|
|
|
file="${1:?}" || exit 1
|
|
sed -e 's/,,/, ,/g' "$file" | column -s, -t | less -#5 --LINE-NUMBERS --chop-long-lines --RAW-CONTROL-CHARS
|