Code Monkey home page Code Monkey logo

Comments (3)

gromgit avatar gromgit commented on August 16, 2024 1

Extracting data from a JSON file with text tools like grep is generally not a good idea; one little change in the data and your script suddenly outputs nothing or (worse) incorrect values. Use a tool that understands JSON to tear raw.json apart, like jq.

That said, something like the following should work without introducing any new tools (UNTESTED):

# your original data gathering pipeline (minus the unnecessary `cat`)
grep -o -i '"year":[[:blank:]][[:digit:]]\{4\}' $file | grep -o '[[:digit:]]\{4\}' | sort -n | uniq -c |
# bash's builtin read is your friend
while read -r uploads year; do
  # generate each internal object
  jo year="$year" uploads="$uploads"
done | 
# shove them all into a JSON array
jo -p -a

from jo.

dynabler avatar dynabler commented on August 16, 2024

@gromgit Thank you! That will help me get started. I was indeed missing | jo -p -a as a secondary pipe. I think I finally managed to get my head wrapped around how I should deal with nix tools: don't expect one tool to do everything you need, but rather use tools and pipe them together.

A side note: I have seen your answer to many bash questions in issues, perhaps it's an idea to write a small jo cookbook with various examples? jq manual has examples just below each command. Just a suggestion, not a requirement.

from jo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.