redet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
redet: command not found
or when using sudo you get the following error message
sudo: redet: command not found
Solutions to redet: command not found
How To Fix redet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu redet is provided by redet package.
redet is:
Redet allows the user to construct regular expressions and test them against input data by executing any of a variety of search programs, editors, and programming languages that make use of regular expressions. When a suitable regular expression has been constructed it may be saved to a file.
Redet stands for Regular Expression Development and Execution Tool. For each program, a palette showing the available regular expression syntax is provided. Selections from the palette may be copied to the regular expression window with a mouse click. Users may add their own definitions to the palette via their initialization file. Redet also keeps a list of the regular expressions executed, from which entries may be copied back into the regular expression under construction. The history list is saved to a file and restored on startup, so it persists across sessions.
So long as the underlying program supports Unicode, Redet allows UTF-8 Unicode in both test data and regular expressions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install redet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install redet.
sudo apt -y install redet
Or if you have aptitude installed you can use the following command.
sudo aptitude install redet
Summary
In this tutorial we learn how to fix redet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.