Kotlin: invoke external command from within Kotlin code
Question or issue of Kotlin Programming: I want to invoke an external command from Kotlin code. In C/Perl, I would use system() function. In Python, I would use the subprocess module. In Go, I would use os/exec, and etc. But, how to do this in Kotlin?
Continue Reading