ebnflint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ebnflint: command not found
or when using sudo you get the following error message
sudo: ebnflint: command not found
Solutions to ebnflint: command not found
How To Fix ebnflint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ebnflint is provided by ebnflint package.
ebnflint is:
Ebnflint verifies that EBNF productions are consistent and grammatically correct. It reads them from an HTML document such as the Go specification.
Grammar productions are grouped in boxes demarcated by the HTML elements
Usage:
ebnflint [–start production] [file]
The –start flag specifies the name of the start production for the grammar; it defaults to “Start”.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ebnflint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ebnflint.
sudo apt -y install ebnflint
Or if you have aptitude installed you can use the following command.
sudo aptitude install ebnflint
Summary
In this tutorial we learn how to fix ebnflint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.