Om `jq` te installeren op RHEL/CentOS 7/8:
#1 Download `jq` van de officiële website
```sch
wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
```
#2 Verplaats bestand naar map `/usr/bin`
```sch
mv jq-linux64 /usr/bin/jq
```
#3 Versie verifiëren
```sch
jq --versie
``` |