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 | DONARA BLANC | MODULE TOOLS | SPRINT 2 | JQ exercises #44

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

Conversation

donarbl
Copy link

@donarbl donarbl commented Mar 11, 2025

Self checklist

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

Changelist

Training on JQ commands and flags and pipes and chaining them together to extract information.

Questions

Ask any questions you have for your reviewer.

@donarbl donarbl added 📅 Sprint 2 Assigned during Sprint 2 of this module Needs Review Participant to add when requesting review labels Mar 11, 2025
Copy link
Member

@illicitonion illicitonion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are all looking good, congrats!

I left a few comments about working with shell scripts in general, but all the jq stuff here is looking great :)

@@ -5,3 +5,5 @@ set -euo pipefail
# The input for this script is the person.json file.
# TODO: Write a command to output the name of the person.
# Your output should be exactly the string "Selma", but should not contain any quote characters.
jq -r .'name' person.json
Selma
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is useful to see the output produced, but we'd generally avoid putting this directly in a shell script, as it causes the script to no longer run, e.g.

% ./script-01.sh
Selma
./script-01.sh: line 9: Selma: command not found

If you're going to include the output, I'd recommend doing so in a comment (i.e. putting a # before the output) so that the scripts can still run :)

@@ -5,3 +5,5 @@ set -euo pipefail
# The input for this script is the person.json file.
# TODO: Write a command to output the name of the person, then a comma, then their profession.
# Your output should be exactly the string "Selma, Software Engineer", but should not contain any quote characters.
q -r '[.name, .profession] | join (",")' person.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like something went slightly wrong in your copy+paste here?

But this raises an interesting workflow question - there are two ways you can go about making this kind of script - you can work in the terminal then copy+paste into the file, or work in the file and run the file each time you want to try something out. How do you feel about the two? What are the advantages/disadvantages of each way of working?

Comment on lines +8 to +9
jq -r '.[] | "\(.nam
e) \(.city)"' scores.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How did you end up with a newline in the middle of your command here? (Same for script-06 and script-07, script-10, and script-11)?

@illicitonion illicitonion added Reviewed Volunteer to add when completing a review and removed Needs Review Participant to add when requesting review labels Mar 18, 2025
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