Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install jq on amazon EC2 instance

Tags:

I am trying to install jq JSON parser on amazon instance, unfortunately, i'm not able to install it can someone guide me.

like image 965
aMoL Thite Avatar asked Aug 02 '16 09:08

aMoL Thite


People also ask

What is JQ command?

The JQ command is used to transform JSON data into a more readable format and print it to the standard output on Linux. The JQ command is built around filters which are used to find and print only the required data from a JSON file.


1 Answers

jq is available in the yum repo so run the following

sudo yum install jq

will install jq on the instance

like image 59
Frederic Henri Avatar answered Oct 18 '22 18:10

Frederic Henri