jgrep command not found
In this troubleshooting guide we learn how to fix jgrep command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
jgrep: command not found
or when using sudo you get the following error message
sudo: jgrep: command not found
Solutions to jgrep: command not found
How To Fix jgrep: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jgrep is provided by jgrep package.
jgrep is:
Compare a list of json documents to a simple logical language and returns matches as output.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jgrep
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jgrep.
sudo apt -y install jgrep
Or if you have aptitude installed you can use the following command.
sudo aptitude install jgrep
Summary
In this tutorial we learn how to fix jgrep command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.