Skip to content
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

Open
wants to merge 13 commits into
base: main
Choose a base branch
from

Conversation

nadika-zavodovska
Copy link

Hi,

I've done all the tasks for the shell-pipelines.

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • I have tested my changes
  • My changes follow the style guide
  • My changes meet the requirements of this task

Thank you.

@nadika-zavodovska nadika-zavodovska added 📅 Sprint 2 Assigned during Sprint 2 of this module Needs Review Participant to add when requesting review labels Mar 7, 2025
Copy link

@ehwus ehwus left a 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
Copy link

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?

Copy link
Author

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 '!' '.'
Copy link

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?

Copy link
Author

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.

@ehwus ehwus added Reviewed Volunteer to add when completing a review and removed Needs Review Participant to add when requesting review labels Mar 18, 2025
@nadika-zavodovska
Copy link
Author

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.

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Reviewed Volunteer to add when completing a review 📅 Sprint 2 Assigned during Sprint 2 of this module
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants