Skip to content

Commit f33f898

Browse files
committed
fix: ensure newline is added to end of shell scripts
1 parent 18fb658 commit f33f898

28 files changed

Lines changed: 28 additions & 28 deletions

individual-shell-tools/awk/script-01.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output just the names of each player in `scores-table.txt`.
66
# Your output should contain 6 lines, each with just one word on it.
77

8-
awk '{ print $1 }' scores-table.txt
8+
awk '{ print $1 }' scores-table.txt

individual-shell-tools/awk/script-02.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output the names of each player, as well as their city.
66
# Your output should contain 6 lines, each with two words on it, separated by a space.
77

8-
awk '{ print $1, $2 }' scores-table.txt
8+
awk '{ print $1, $2 }' scores-table.txt

individual-shell-tools/awk/script-03.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ set -euo pipefail
66
# Your output should contain 6 lines, each with one word and one number on it.
77
# The first line should be "Ahmed 1".
88

9-
awk '{ print $1, $3 }' scores-table.txt
9+
awk '{ print $1, $3 }' scores-table.txt

individual-shell-tools/awk/script-04.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ set -euo pipefail
66
# Your output should contain 3 lines, each with one word and one number on it.
77
# The first line should be "Ahmed 4".
88

9-
awk '{if ($2 == "London") print $1, $NF}' scores-table.txt
9+
awk '{if ($2 == "London") print $1, $NF}' scores-table.txt

individual-shell-tools/awk/script-05.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ set -euo pipefail
66
# Your output should contain 6 lines, each with one word and one number on it.
77
# The first line should be "Ahmed 3".
88

9-
awk '{ print $1, NF-2 }' scores-table.txt
9+
awk '{ print $1, NF-2 }' scores-table.txt

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ set -euo pipefail
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.
99

10-
awk '{ total += $3 } END { print total }' scores-table.txt
10+
awk '{ total += $3 } END { print total }' scores-table.txt

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ awk '{
1212
total = 0
1313
for (i = 3; i <= NF; i++) total += $i
1414
print $1, total
15-
}' scores-table.txt
15+
}' scores-table.txt

individual-shell-tools/cat/script-01.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output the contents of the helper-1.txt file inside the helper-files directory to the terminal.
66
# The output of this command should be "Once upon a time...".
77

8-
cat ../helper-files/helper-1.txt
8+
cat ../helper-files/helper-1.txt

individual-shell-tools/cat/script-02.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ set -euo pipefail
1212
# I was tempted to take a bite of it.
1313
# But this seemed like a bad idea...
1414

15-
cat ../helper-files/*
15+
cat ../helper-files/*

individual-shell-tools/cat/script-03.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ set -euo pipefail
1010
# 2 I was tempted to take a bite of it.
1111
# 3 But this seemed like a bad idea...
1212

13-
cat -n ../helper-files/helper-3.txt
13+
cat -n ../helper-files/helper-3.txt

0 commit comments

Comments
 (0)