Skip to content

Commit 0fea450

Browse files
authored
Merge branch 'main' into individual-shell-tools-exercises
2 parents 4856862 + 4350f48 commit 0fea450

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ set -euo pipefail
44

55
# TODO: Write a command to output input.txt with all occurrences of the letter `i` replaced with `I`.
66
# The output should contain 11 lines.
7-
# The first line of the output should be: "ThIs Is a sample fIle for experImentIng with sed.".
8-
7+
# The first line of the output should be: "ThIs Is a sample fIle for experImentIng wIth sed.".
98
sed "s/i/I/g" input.txt

0 commit comments

Comments
 (0)