com.github.leandroborgesferreira.dagcommand.utils.CommandExec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dag-command Show documentation
Show all versions of dag-command Show documentation
Affected gradle modules by branch
package com.github.leandroborgesferreira.dagcommand.utils
import java.util.concurrent.TimeUnit
import kotlin.streams.toList
object CommandExec : CommandExecutor {
override fun runCommand(command: String): List =
Runtime.getRuntime()
.exec(command)
.apply { waitFor(10, TimeUnit.SECONDS) }
.inputStream
.bufferedReader()
.lines()
.toList()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy