Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: jq Clear Filter

Jqp: TUI Playground to Experiment with Jq

jqp a TUI playground for exploring jq. This application utilizes itchyny's implementation of jq written in Go, gojq . Installation homebrew brew install noahgorstein/tap/jqp macports sudo port install jqp Arch Linux Available through the Arch User Repository as jqp-bin. yay -S jqp-bin Snap install sudo snap install jqp GitHub releases Download the relevant asset for your operating system from the latest GitHub release. Unpack it, then move the binary to somewhere accessible in your

Topics: ctrl file jqp line theme

Jiratui – A Textual UI for interacting with Atlassian Jira from your shell

JQL Search Leverage the power of Jira Query Language (JQL) with JiraTUI to perform advanced searches. This feature allows you to create complex queries to filter tasks based on specific criteria, providing greater flexibility and precision in managing your projects and enhancing your productivity. Expressions can be saved to use at any time.

More shell tricks: first class lists and jq

More shell tricks: first class lists, jq, and the es shell Preamble It’s not a secret that most common shells don’t have first class lists. Sure, you can pass a list to a program by passing each element in argv (e.g. with "$@" or "${list_variable[@]}" ), but what if you want to return a list? There are a couple of options. The challenge As a more practical example of this, let’s implement split-by-double-dash , a function (or a program) that would return two lists: args that come before --

Topics: jq list lists return sh

Jqfmt like gofmt, but for jq

Description I'm frequently passed long shell one-liners that require some visual inspection before running. These days, there's about as much jq in that one-liner as there is bash. I wrote jqfmt to help add line breaks in sensible locations while reading (or writing!) jq. At time of initial development, I naturally turned to https://github.com/itchyny/gojq expecting to be able to generate and walk a syntax tree—but gojq didn't seem to provide an AST that could be "walked," and it doesn't expor