regexxer command not found

In this troubleshooting guide we learn how to fix regexxer command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

regexxer: command not found

or when using sudo you get the following error message

sudo: regexxer: command not found

Solutions to regexxer: command not found

How To Fix regexxer: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu regexxer is provided by regexxer package.

regexxer is:

Regexxer is a nifty GUI search/replace tool featuring Perl-style regular expressions (PCRE - Perl Regex). If you need project-wide substitution and you’re tired of hacking sed command lines together, then you should definitely give it a try.

The tool can be used to search files or contents inside of a file.

To fix this problem, we can install more using the command below.

sudo apt-get -y install regexxer

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install regexxer.

sudo apt -y install regexxer

Or if you have aptitude installed you can use the following command.

sudo aptitude install regexxer

Summary

In this tutorial we learn how to fix regexxer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.