mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-12 10:48:11 +01:00
7 lines
127 B
Text
7 lines
127 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Simple console CSV viewer
|
||
|
|
||
|
file="${1:?}" || exit 1
|
||
|
sed -e 's/,,/, ,/g' "$file" | column -s, -t | less -#5 -N -S
|