Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 590 Bytes

command-line-api.md

File metadata and controls

19 lines (12 loc) · 590 Bytes

CommandLine API documentation

This is the documentation for the custom CommandLine API provided in vLabeler's scripting environment.

Global functions

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")

Source file

See the JavaScript source code and Kotlin source code for more details.