From af03870ff6ca1381416321491ea2a98c93494bf3 Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Fri, 28 Aug 2026 16:09:41 +0100 Subject: [PATCH] Partial coursework submission --- individual-shell-tools/awk/script-01.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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