From 45be0ccf138514527c746f7b60b0d53fcfc81b7d Mon Sep 17 00:00:00 2001 From: l Date: Tue, 7 Jul 2026 14:23:18 +0100 Subject: [PATCH] solve task 1 --- individual-shell-tools/awk/script-01.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/individual-shell-tools/awk/script-01.sh b/individual-shell-tools/awk/script-01.sh index 8db4390af..e75a263cf 100755 --- a/individual-shell-tools/awk/script-01.sh +++ b/individual-shell-tools/awk/script-01.sh @@ -4,3 +4,5 @@ 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