Add INCLUDECMD command

Executes a shell command and reads the resulting output as a Remind script.
This commit is contained in:
Dianne Skoll
2021-09-04 23:00:03 -04:00
parent 295aeb0ed8
commit a163a0c446
6 changed files with 146 additions and 4 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ typedef Parser *ParsePtr; /* Pointer to parser structure */
enum TokTypes
{ T_Illegal,
/* Commands first */
T_Rem, T_Push, T_Pop, T_Preserve, T_Include, T_If, T_Else, T_EndIf,
T_Rem, T_Push, T_Pop, T_Preserve, T_Include, T_IncludeCmd, T_If, T_Else, T_EndIf,
T_IfTrig, T_ErrMsg,
T_Set, T_UnSet, T_Fset, T_Omit, T_Banner, T_Exit,
T_WkDay,