diff options
author | 2022-05-11 18:12:19 +0200 | |
---|---|---|
committer | 2022-05-11 18:12:19 +0200 | |
commit | 1508c40a92f4472231b976c6dd8d3e2c24daef72 (patch) | |
tree | 21a5a4c9d58d47b4fdfcc0dd6186784dbb8eb543 /docs/shell/jq.rhtml | |
parent | dfd94540d6d024efe9c08b48efe922591d92cae9 (diff) | |
download | website-1508c40a92f4472231b976c6dd8d3e2c24daef72.tar.gz website-1508c40a92f4472231b976c6dd8d3e2c24daef72.zip |
Add docs/shell/
Diffstat (limited to 'docs/shell/jq.rhtml')
-rw-r--r-- | docs/shell/jq.rhtml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/shell/jq.rhtml b/docs/shell/jq.rhtml new file mode 100644 index 0000000..8605b76 --- /dev/null +++ b/docs/shell/jq.rhtml @@ -0,0 +1,8 @@ +<h1>Shell</h1> +<h2>jq - Command-line JSON processor</h2> +<p> + FreeBSD: <i>pkg install jq</i> +</p> +<p>Un comando molto utile per chi lavora in ambito enterprise è <code>jq</code>. Consente di navigare il JSON in + maniera molto semplice. Di seguito viene riportato un esempio di utilizzo:</p> +<pre>curl -X GET http://example.com/rest-endpoint | jq ".someField"</pre> |