PARSE must be followed by one of the keywords choices; found bad keyword

Synopsis
You specified some keyword after the keyword PARSE which Reginald does not recognize as one of the acceptable choices. Reginald lists the keywords that are allowed after PARSE as in the error message. What you supplied was bad keyword, and that isn't supported by Reginald.

Cause
You tried to specify a variable name after PARSE, but forget to put both the parsing source (ie, ARG, LINEIN, etc) you want first.

Cure
Make sure that you follow PARSE with the parsing source you wish. For example, the following parses the first 3 arguments passed to your script into the variables My_Var1, My_Var2, and My_Var3:

PARSE ARG My_Var1 My_Var2 My_Var3
Cause
You misspelled the keyword, for example ARGH instead of ARG. Check that bad keyword is exactly what you intended.

Cure
Learn to spell, rat-face.

Cause
bad keyword is exactly what you want, but Reginald does not seem to support it.

Cure
Update to the latest version of Reginald at Reginald's web site.