Skip to content

Commit bab6b37

Browse files
committed
ex7 fixed
1 parent 53c8866 commit bab6b37

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,10 @@ 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 ''{print $1, {sum +=2} END {print sum}' scores-table.txt
10+
awk '{
11+
total = 0
12+
for (i = 3; i <= NF; i++) {
13+
total = total + $i
14+
}
15+
print $1, total
16+
}' scores-table.txt

0 commit comments

Comments
 (0)