-
-
Save maximveksler/ae3ad5a4cf04aadc1527d8216ee58fdd to your computer and use it in GitHub Desktop.
Install jq (JSON Command Line processor)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# This scripts installs jq: http://stedolan.github.io/jq/ | |
JQ=/usr/bin/jq | |
curl -o "$JQ" -L https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-linux-amd64 && chmod +x $JQ | |
echo "$($JQ --version) installed." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment