Infendro 13b8597810
All checks were successful
/ publish (push) Successful in 3m23s
Merge pull request '1.1.0 Fix' (#3) from develop into main
Reviewed-on: Infendro/shell-kt#3
2026-02-16 16:54:29 +00:00
2026-02-15 14:06:35 +01:00
2026-02-15 14:06:35 +01:00
2026-02-16 17:53:50 +01:00
2025-07-12 20:23:00 +02:00
2026-02-15 14:06:35 +01:00
2025-10-03 12:20:25 +02:00
2025-10-03 12:20:25 +02:00
2025-07-12 20:23:00 +02:00
2026-02-15 14:06:35 +01:00
2025-12-13 01:51:47 +01:00

shell-kt

shell-kt is a Kotlin Multiplatform library that enables the execution of shell commands.

Installation

Add the following to your build.gradle.kts.

repositories {
    maven("https://git.infendro.com/api/packages/Infendro/maven")
}

dependencies {
    implementation("com.infendro:shell:1.1.0")
}

Usage

suspend fun main() {
    val result = execute("echo", "Hello World!")

    println(result.code)  // 0
    println(result.value) // Hello World!
}
Description
No description provided
Readme 141 KiB
Languages
Kotlin 100%