Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjz/jq-tutorial
Interactive exercises for learning jq
https://github.com/rjz/jq-tutorial
hacktoberfest jq jq-tutorial tutorial
Last synced: 8 days ago
JSON representation
Interactive exercises for learning jq
- Host: GitHub
- URL: https://github.com/rjz/jq-tutorial
- Owner: rjz
- Created: 2014-01-12T19:03:34.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2023-05-14T17:59:05.000Z (over 1 year ago)
- Last Synced: 2024-12-09T13:07:20.549Z (17 days ago)
- Topics: hacktoberfest, jq, jq-tutorial, tutorial
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 127
- Watchers: 7
- Forks: 15
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jq tutorial
[jq][0] is an awesome command-line utility for processing JSON data. It has an
[excellent manual][1] already, but--since there's no substitute for practice--
this tutorial provides an unofficial supplement for new users exploring its syntax
and applications.### Running tutorial
[Download and install][2] jq, then grab a copy of this tutorial:
$ npm install -g jq-tutorial
$ jq-tutorialRun individual lessons by name:
$ jq-tutorial pick
#### Running in docker
$ docker build -t jq-tutorial .
$ docker run -ti jq-tutorial### Attribution
* jq copyright (C) 2012-2023 [Stephen Dolan][3]
* heavy inspiration from Rod Vagg's [workshopper][4]### License
MIT
[0]: http://stedolan.github.io/jq "jq"
[1]: http://stedolan.github.io/jq/manual "jq Manual"
[2]: http://stedolan.github.io/jq/download/ "Download jq"
[3]: https://github.com/stedolan
[4]: https://github.com/rvagg/workshopper "Workshopper"