dotfiles/dotfiles/lib/functions/get_cols

9 lines
134 B
Bash
Executable File

#!/usr/bin/env sh
function get_cols {
FS="${FS:- }"
gawk -f "$HOME/.lib/get_cols.awk" -v "cols=$*" -v "FS=$FS"
}
get_cols "$@"