morbig command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
morbig: command not found
or when using sudo you get the following error message
sudo: morbig: command not found
Solutions to morbig: command not found
How To Fix morbig: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu morbig is provided by morbig package.
morbig is:
Morbig is a parser for shell scripts that are written in the POSIX shell script language. It parses the scripts statically, that is without executing them, and constructs a concrete syntax tree for each of them. The concrete syntax trees are built using constructors according to the shell grammar of the POSIX standard.
This package contains the parser tool which allows you to parse shell scripts, and to obtain their concrete syntax tree in various formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install morbig
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install morbig.
sudo apt -y install morbig
Or if you have aptitude installed you can use the following command.
sudo aptitude install morbig
Summary
In this tutorial we learn how to fix morbig command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.