diff --git a/individual-shell-tools/awk/script-01.sh b/individual-shell-tools/awk/script-01.sh index 8db4390af..88696402e 100755 --- a/individual-shell-tools/awk/script-01.sh +++ b/individual-shell-tools/awk/script-01.sh @@ -2,5 +2,4 @@ set -euo pipefail -# TODO: Write a command to output just the names of each player in `scores-table.txt`. -# Your output should contain 6 lines, each with just one word on it. +awk '{print $1}' scores-table.txt