Bash - Functions

#Functions======================================
function check() {
	FC=$1
	if [ $FC != "0" ];then
           echo -e "--> ERROR\n"
	else
	   echo -e "--> OK\n"
	fi
	}
#============================================