lltsv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lltsv: command not found
or when using sudo you get the following error message
sudo: lltsv: command not found
Solutions to lltsv: command not found
How To Fix lltsv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lltsv is provided by lltsv package.
lltsv is:
lltsv is a command line tool to list specified keys of LTSV (Labeled Tab Separated Values) text with colorized output to a terminal.
It supports to filter with some comparing operators (arithmetic expression or regular expression)
To fix this problem, we can install more using the command below.
sudo apt-get -y install lltsv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lltsv.
sudo apt -y install lltsv
Or if you have aptitude installed you can use the following command.
sudo aptitude install lltsv
Summary
In this tutorial we learn how to fix lltsv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.