mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-12 10:48:11 +01:00
8 lines
219 B
Bash
Executable file
8 lines
219 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# csview
|
|
#
|
|
# A very simple and crude terminal CSV viewer - nothing more.
|
|
|
|
file="${1:?}" || exit 1
|
|
sed -e 's/,,/, ,/g' "$file" | column -s, -t | less -#5 --LINE-NUMBERS --chop-long-lines --RAW-CONTROL-CHARS
|