sgmlspl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sgmlspl: command not found
or when using sudo you get the following error message
sudo: sgmlspl: command not found
Solutions to sgmlspl: command not found
How To Fix sgmlspl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sgmlspl is provided by sgmlspl package.
sgmlspl is:
This is an example of a Perl script to post-process SGML parser output using the SGMLS Perl modules. To make sensible use of this package you will need to install a suitable SGML parser as well.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sgmlspl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sgmlspl.
sudo apt -y install sgmlspl
Or if you have aptitude installed you can use the following command.
sudo aptitude install sgmlspl
Summary
In this tutorial we learn how to fix sgmlspl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.