ssed command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ssed: command not found
or when using sudo you get the following error message
sudo: ssed: command not found
Solutions to ssed: command not found
How To Fix ssed: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ssed is provided by ssed package.
ssed is:
Super sed reads the specified files or the standard input if no files are specified, makes editing changes according to a list of commands, and writes the results to the standard output.
Super sed is an enhanced version of GNU sed 3.02. Relative to 3.02, there are several new features (including in-place editing of files, extended regular expression syntax and a few new commands) and some bug fixes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ssed
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ssed.
sudo apt -y install ssed
Or if you have aptitude installed you can use the following command.
sudo aptitude install ssed
Summary
In this tutorial we learn how to fix ssed command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.