Skip to content

Instantly share code, notes, and snippets.

@sanggiChoi
Forked from kamermans/install_jq.sh
Created October 29, 2018 05:21
Show Gist options
  • Save sanggiChoi/6e772a540fb223e645be58931400448b to your computer and use it in GitHub Desktop.
Save sanggiChoi/6e772a540fb223e645be58931400448b to your computer and use it in GitHub Desktop.
Install jq (JSON Command Line processor)
#!/bin/bash -e
# This scripts installs jq: http://stedolan.github.io/jq/
JQ=/usr/bin/jq
curl https://stedolan.github.io/jq/download/linux64/jq > $JQ && chmod +x $JQ
ls -la $JQ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment