ssft.sh command not found

In this troubleshooting guide we learn how to fix ssft.sh command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ssft.sh: command not found

or when using sudo you get the following error message

sudo: ssft.sh: command not found

Solutions to ssft.sh: command not found

How To Fix ssft.sh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ssft.sh is provided by ssft package.

ssft is:

Shell function library useful to build shell script frontends.

The library defines a set of functions to display messages and read values from the user on X (using zenity or kdialog) or console (using dialog or plain text) and has been designed to be used by sourcing the library code from other scripts.

The library supports L10N if gettext.sh is installed.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ssft

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ssft.

sudo apt -y install ssft

Or if you have aptitude installed you can use the following command.

sudo aptitude install ssft

Summary

In this tutorial we learn how to fix ssft.sh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.