worklog command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
worklog: command not found
or when using sudo you get the following error message
sudo: worklog: command not found
Solutions to worklog: command not found
How To Fix worklog: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu worklog is provided by worklog package.
worklog is:
Worklog is a program that helps you keep track of your time.
The author wrote this program because he had several projects that required to keep a timesheet, sometimes spending 5 minutes here and there doing miscellaneous administrative tasks.
Rather than invoke an editor on a timesheet file for every little segment of time spent doing these tasks, this tool allows one to leave a clock running and indicate with one or two keystrokes the onset or change of any given task.
Worklog is a simple ncurses based program to do just that.
To fix this problem, we can install more using the command below.
sudo apt-get -y install worklog
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install worklog.
sudo apt -y install worklog
Or if you have aptitude installed you can use the following command.
sudo aptitude install worklog
Summary
In this tutorial we learn how to fix worklog command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.