organize command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
organize: command not found
or when using sudo you get the following error message
sudo: organize: command not found
Solutions to organize: command not found
How To Fix organize: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu organize is provided by organize package.
organize is:
organize is a command line utility to automate file organization tasks. A list of folders containing files to organize are provided in a configuration file. A list of filters can be applied to those files : filtering can be done by file extension, last modified date, regular expressions and many more. And a list of actions will be applied to the filtered files : they can put them into the trash, move them into another folder and many more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install organize
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install organize.
sudo apt -y install organize
Or if you have aptitude installed you can use the following command.
sudo aptitude install organize
Summary
In this tutorial we learn how to fix organize command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.