-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
London | Nadika Zavodovska | Module-Tools | Sprint 2 | Shell-Pipelines #34
base: main
Are you sure you want to change the base?
London | Nadika Zavodovska | Module-Tools | Sprint 2 | Shell-Pipelines #34
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is really great work Nadika, the scripts read well and perform in exactly the way that we've required. This shows a great understanding of how and when to use shell pipelines, building on your solid foundation of shell tooling in general.
@@ -5,3 +5,5 @@ set -euo pipefail | |||
# The input for this script is the scores-table.txt file. | |||
# TODO: Write a command to output scores-table.txt, with shows the line for the player whose first score was the second highest. | |||
# Your output should be: "Piotr Glasgow 15 2 25 11 8" (without quotes). | |||
|
|||
sort -k3,3nr scores-table.txt | head -n 2 | tail -n 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: This works well, but can we find the nth row of a file more efficiently?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your great question, @ehwus Alex. I think sed -n '2p'
is faster than head -n 2 | tail -n 1
because it prints the second line directly without extra steps, making it simpler and better for large files.
@@ -6,3 +6,5 @@ set -euo pipefail | |||
# The author got feedback that they're using too many exclamation marks (!). | |||
# | |||
# TODO: Write a command to output the contents of text.txt with every exclamation mark (!) replaced with a full-stop (.). | |||
|
|||
cat text.txt | tr '!' '.' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: this works well, but could we allow tr
to access the file directly and save having to use two programs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a great question, and it's a new insight for me. Yes, we can access the file without using the cat command by running tr '!' '.' < text.txt.
Thank you, @ehwus Alex, for your really helpful review. I appreciate your insightful questions that helped guide my approach. Your encouraging feedback motivates me to keep improving! |
Hi,
I've done all the tasks for the shell-pipelines.
Self checklist
Thank you.