
com.kennycason.run.Run.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of run Show documentation
Show all versions of run Show documentation
Run is a command line shortcut tool
The newest version!
package com.kennycason.run
import com.kennycason.run.commands.CommandRunner
/**
* Created by kenny on 5/18/16.
*/
fun main(commands : Array) {
try {
CommandRunner().run(commands.asList())
} catch (e: RuntimeException) {
println(e.message)
//e.printStackTrace()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy