#!/bin/bash


if [ !  "$1" = "" ]
then
	if [ "$1" = "/enable"  ]
	then
		echo "ENABLE"
	elif [ "$1" = "/disable"  ]
	then
		echo "DISABLE"
	else
		echo -e "\e[91mNieprawidlowe polecenie\e[0m"
	fi
fi
