aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/csview
blob: 688938f491f56e4c8908ae71ece7dd8abf1d8ad7 (plain) (blame)
1
2
3
4
5
6
#!/usr/bin/env bash
if [ "$#" -eq 0 ] || [ "$1" = "-" ]; then
    column -ts, | less -S
else
    column -ts, "$1" | less -S
fi