Skip to content

Commit 7b5a66e

Browse files
committed
command to output just the names of each player along with the total of adding all of that player's scores
1 parent fc1c390 commit 7b5a66e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

individual-shell-tools/awk/script-07-stretch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ set -euo pipefail
77
# TODO: Write a command to output just the names of each player along with the total of adding all of that player's scores.
88
# Your output should contain 6 lines, each with one word and one number on it.
99
# The first line should be "Ahmed 15". The second line should be "Basia 37"
10+
awk '{sum = 0; for (i=3; i<=NF; i++) sum += $i; print $1, sum}' scores-table.txt

0 commit comments

Comments
 (0)