1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-16 09:10:48 +03:00

add jq info to readme

This commit is contained in:
Ali Mohammad Pur 2020-01-10 18:07:10 +03:30 committed by GitHub
parent 2ce3c78e54
commit a1f8561c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,7 @@
| [Hy](#hy) | [Joel Martin](https://github.com/kanaka) |
| [Io](#io) | [Dov Murik](https://github.com/dubek) |
| [Java](#java-17) | [Joel Martin](https://github.com/kanaka) |
| [Jq](#jq) | [Ali MohammadPur](https://github.com/alimpfard) |
| [JavaScript](#javascriptnode) ([Demo](http://kanaka.github.io/mal)) | [Joel Martin](https://github.com/kanaka) |
| [Julia](#julia) | [Joel Martin](https://github.com/kanaka) |
| [Kotlin](#kotlin) | [Javier Fernandez-Ivern](https://github.com/ivern) |
@ -587,6 +588,17 @@ mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY
mvn -quiet exec:java -Dexec.mainClass=mal.stepX_YYY -Dexec.args="CMDLINE_ARGS"
```
### Jq
Tested against version 1.6, with a lot of cheating in the IO department
```
cd jq
STEP=stepA_YYY ./run
# with Debug
DEBUG=true STEP=stepA_YYY ./run
```
### JavaScript/Node
```