This is the documentation for the custom CommandLine
API provided in vLabeler
's scripting environment.
executeCommand(...args: string[]): int
: execute a command in the command line, wait for it to finish, and return the
exit code. The args will be automatically wrapped by ""
.
e.g.
executeCommand("ls", "-l")
See the JavaScript source code and Kotlin source code for more details.