#!/bin/sh case "$1" in ON) echo 'ON' ;; HALF) echo 'HALF' ;; OFF) echo 'OFF' ;; esac