grepmail command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
grepmail: command not found
or when using sudo you get the following error message
sudo: grepmail: command not found
Solutions to grepmail: command not found
How To Fix grepmail: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu grepmail is provided by grepmail package.
grepmail is:
Grepmail looks for mail messages containing a pattern, and prints the resulting messages. Usage is very similar to grep. It can handle compressed mailbox files, and can search the header or body of emails. It also supports searches constrained by date and size.
To fix this problem, we can install more using the command below.
sudo apt-get -y install grepmail
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install grepmail.
sudo apt -y install grepmail
Or if you have aptitude installed you can use the following command.
sudo aptitude install grepmail
Summary
In this tutorial we learn how to fix grepmail command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.