We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348aedd commit de915ebCopy full SHA for de915eb
individual-shell-tools/awk/script-04.sh
@@ -5,3 +5,4 @@ set -euo pipefail
5
# TODO: Write a command to output just the names of each player in London along with the score from their last attempt.
6
# Your output should contain 3 lines, each with one word and one number on it.
7
# The first line should be "Ahmed 4".
8
+awk '$2 == "London" {print $1, $NF}' scores-table.txt
0 commit comments