tmxgrep command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tmxgrep: command not found
or when using sudo you get the following error message
sudo: tmxgrep: command not found
Solutions to tmxgrep: command not found
How To Fix tmxgrep: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tmxgrep is provided by libxml-tmx-perl package.
libxml-tmx-perl is:
XML::TMX is a collection of modules that provide functions to deal with TMX (Translation Memory eXchange) files, like creating new files, or reading and processing existing files. It also provides tools to create TMX files from other sources.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libxml-tmx-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libxml-tmx-perl.
sudo apt -y install libxml-tmx-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libxml-tmx-perl
Summary
In this tutorial we learn how to fix tmxgrep command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.