postmessage.js - parameter seem to have to be in a specific order which doesn't follow help output nor wiki output
If you don't follow expected order, it will prompt for things that you have provided in the command line like "From User:"
[sbbs@vmi1943160 notes]$ cat postmessag
usage: postmsg.js [-option] [-option] [...]must be a valid sub-board (msgbase) internal code
````
options: -i import text from filename rather than stdin
-t set 'to' user name
-n set 'to' netmail address
-u set 'to' user number
-f set 'from' user name
-e set 'from' user number
-s set 'subject'
-d use default values (no prompt) for to, from, and subject
Note: You may need to enclose multi-word options in quotes (e.g. "-fMy Name")
jsexec postmsg.js -i/home/sbbs/ctrl/tl-intro.txt -tAll -e1 "-sToo Lazy BBS" LOCAL-NOTICES
jsexec postmsg.js -tAll -e1 -i/home/sbbs/ctrl/tl-intro.txt "-sToo Lazy BBS" LOCAL-NOTICES
jsexec postmsg.js -tAll "-sToo Lazy BBS" -e1 -i/home/sbbs/ctrl/tl-intro.txt LOCAL-NOTICES
This final command follows the arguments as listed in the order of the case statements.
The help output does not list the arguments in the same order, as can be seen in my listed attempts.