#!/bin/bash

perfect=no

if [[ ${perfect} == yes ]] ; then
  state='perfect'
else
  state='fine'
fi

echo "This is ${state}."