When using IF statements, you need to have spaces inside the comparison:

Code:
if (something == something) {
  echo -a IF MATCH
}
else {
  echo -a NO MATCH
}



-

You don't need to use the / command prefix when you are making scripts.

Code:
/echo -a COMMAND WITH /
echo -a COMMAND WITH NO /



-genius_at_work