Skip to content

Commit 5e9aeb9

Browse files
committed
task: complete awk stretch exercises
1 parent 567f29c commit 5e9aeb9

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ 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+
10+
awk '{ total += $3 } END { print total }' scores-table.txt

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

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

0 commit comments

Comments
 (0)