Skip to content

Commit e328bd5

Browse files
authored
Change letter being replaced from s to i (#13)
Having people write `s/s/S/` is a little more confusing than `s/i/I/` for their first exercise.
1 parent cab4c47 commit e328bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
set -euo pipefail
44

5-
# TODO: Write a command to output input.txt with all occurrences of the letter `s` replaced with `S`.
5+
# 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.".
7+
# The first line of the output should be: "ThIs Is a sample fIle for experImentIng with sed.".

0 commit comments

Comments
 (0)