Skip to content

Commit 6187899

Browse files
committed
Fix script-06.sh solution.
1 parent e409630 commit 6187899

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set -euo pipefail
99
# Line 3 should be "It contains many lines, and there are some things you may want to do with each of them.".
1010
# Line 11 should be "We also should remember, when we go shopping, to get 4 items: oranges, cheese, bread, olives.".
1111

12-
sed -E 's/,([^ ])/\, \1/g' input.txt
12+
sed -E 's/,([^ ])/, \1/g' input.txt

0 commit comments

Comments
 (0)