rpl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rpl: command not found
or when using sudo you get the following error message
sudo: rpl: command not found
Solutions to rpl: command not found
How To Fix rpl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rpl is provided by rpl package.
rpl is:
rpl is an intelligent search and replacement utility. It will change strings with new strings in multiple text files at the same time.
rpl can verify, find and edit several plain texts quickly.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rpl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rpl.
sudo apt -y install rpl
Or if you have aptitude installed you can use the following command.
sudo aptitude install rpl
Summary
In this tutorial we learn how to fix rpl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.