rows command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rows: command not found
or when using sudo you get the following error message
sudo: rows: command not found
Solutions to rows: command not found
How To Fix rows: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rows is provided by rows package.
rows is:
A command-line interface so you can have easy access to the most used features: convert between formats, sum, join and sort tables. No matter in which format your tabular data is: rows will import it, automatically detect types so you can start working with the data instead of trying to parse it. It is also locale and unicode aware.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rows
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rows.
sudo apt -y install rows
Or if you have aptitude installed you can use the following command.
sudo aptitude install rows
Summary
In this tutorial we learn how to fix rows command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.