#!/bin/bash # The componet to check system related things if [ -f /usr/bin/makeself.sh ]; then # makeself is installed echo "makeself is installed, good" else # makeself is not installed echo "makeself is not installed please install via this application" sleep 3 fi