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