5 lines
125 B
Bash
Executable file
5 lines
125 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
has_command gawk || ( echo "No gawk."; exit 1 )
|
|
index="${1:-1}"; shift; gawk '{print $'"${index}"'}' "$@"
|