You're too clever for your own good. Working around the fact that the program OEMENU doesn't read from command files by forcing the characters into its (i.e. your own) input buffer instead is a good trick. And your thinking about adding
-e seems logical.
Unfortunately, it conflicts with some other logical reasoning in A-Shell, i.e. that
-e should initiate the exit as soon as we return to the dot prompt (i.e. command file is empty), without regard to characters in the keyboard buffer. An argument could certainly be made, in this case, that we waiting until the keyboard buffer was empty would make sense.
But, the counterargument is this: it would allow a fast-typing user to effectively out-run your scheme to force an exit at the completion of the command you specified, by typing-ahead additional commands.
In order to prevent that but allow what you want to do, we'd need some way of distinguishing characters forced into your keyboard buffer by FORCE (running from a command file) and characters you just typed-ahead. (But if you were really fast and clever, you could always type ahead a FORCE command...)
So before adding a new feature or switch (perhaps a variation of
-e that does wait for typeahead characters to get processed), take a look at
SET CMDINP . If it works as intended, you should be able to change your ABC.DO to:
LOG DSK0:[61,1]
SET CMDINP
RUN OEMENU
4
11