All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dankito.utils.process.CommandConfig.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.process

import java.io.File


open class CommandConfig @JvmOverloads constructor(
    val commandArgs: List,
    val workingDir: File? = null,
    val environmentVariables: Map = mapOf(),
    val logErrors: Boolean = true
) {

    override fun toString(): String {
        return commandArgs.joinToString(" ")
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy