File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
individual-shell-tools/awk Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ set -euo pipefail
66
77# TODO: Write a command to output the total of adding together all players' first scores.
88# Your output should be exactly the number 54.
9+ awk ' {sum += $3} END {print sum}' scores-table.txt
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments