Merge pull request #132 from dolmen/fix/github-urls

Fix Github URLs: stedolan.github.com -> stedolan.github.io
tree: 784bba15c79003fa788f9a18d362d999b0d6b3a9
  1. build/
  2. config/
  3. docs/
  4. scripts/
  5. tests/
  6. .gitattributes
  7. .gitignore
  8. AUTHORS
  9. builtin.c
  10. builtin.h
  11. bytecode.c
  12. bytecode.h
  13. compile.c
  14. compile.h
  15. config.h.in
  16. configure.ac
  17. COPYING
  18. execute.c
  19. execute.h
  20. forkable_stack.h
  21. frame_layout.h
  22. gen_utf8_tables.py
  23. jq.1.default
  24. jq.spec
  25. jq_parser.h
  26. jq_test.c
  27. jv.c
  28. jv.h
  29. jv_alloc.c
  30. jv_alloc.h
  31. jv_aux.c
  32. jv_aux.h
  33. jv_dtoa.c
  34. jv_dtoa.h
  35. jv_parse.c
  36. jv_parse.h
  37. jv_print.c
  38. jv_unicode.c
  39. jv_unicode.h
  40. jv_utf8_tables.h
  41. lexer.l
  42. locfile.h
  43. main.c
  44. Makefile.am
  45. opcode.c
  46. opcode.h
  47. opcode_list.h
  48. parser.y
  49. README.md
  50. setup.sh
README.md

jq

jq is a command-line JSON processor.

If you want to learn to use jq, read the documentation at http://stedolan.github.io/jq. This documentation is generated from the docs/ folder of this repository.

If you want to hack on jq, feel free, but be warned that its internals are not well-documented at the moment. Bring a hard hat and a shovel. Also, read the wiki: https://github.com/stedolan/jq/wiki

To build jq, run

./configure
make
sudo make install (optionally)

If you‘ve just checked out the latest version from git (rather than using a released source tarball) then you’ll need to run this first:

autoreconf