You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LonMcGregor
added
Needs Review
Trainee to add when requesting review. PRs without this label will not be reviewed.
and removed
Needs Review
Trainee to add when requesting review. PRs without this label will not be reviewed.
labels
Jul 7, 2026
Results of test: Failed awk/script-06-stretch.sh, please check Failed sed/script-04.sh, please check Failed sed/script-05.sh, please check You passed 28/31 tasks.
Just had a review of my work.
sed/script-04.sh: my script seems to change 'we'll' to 'we will' correctly. Not very sure what the error is or how to troubleshoot this further.
sed/script-05.sh: my initial version was wrong and I used -e flag initially, now corrected to -E
awk/script-06-stretch.sh: I see why this 'failed' I had actually stretched by writing
awk '{sum += $3} END {print "the total first score is " sum}' scores-table.txt
which outputted the total first score is 54
So it was a correct output. But the instructions say that "Your output should be exactly the number 54." So now I've adjusted this to: awk '{sum += $3} END {print sum}' scores-table.txt
which now outputs exactly 54 in the console.
Good work - your solution for sed 4 is correct, my test is wrong,sorry about that. This task is complete now
LonMcGregor
added
Complete
Volunteer to add when work is complete and all review comments have been addressed.
and removed
Needs Review
Trainee to add when requesting review. PRs without this label will not be reviewed.
labels
Jul 7, 2026
Good work - your solution for sed 4 is correct, my test is wrong,sorry about that. This task is complete now
🙏🏽 thank you
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CompleteVolunteer to add when work is complete and all review comments have been addressed.📅 Sprint 1Assigned during Sprint 1 of this module
2 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Learners, PR Template
Self checklist
Changelist
I have done all the excercises including the stretch versions, completing all shell commands as instructed, from ls to awk, cat, grep, sed and wc.
Questions
Sed feels a litle confusing now to me, are there any commonly used sed commands that you would recommend often remembering?