1.1.0 release #2

Merged
Infendro merged 6 commits from develop into main 2026-02-15 13:13:31 +00:00
Showing only changes of commit fd54489747 - Show all commits

View File

@@ -1,14 +1,15 @@
# Kotlin Shell
# shell-kt
This library enables the execution of shell commands in Kotlin Multiplatform.
`shell-kt` is a Kotlin Multiplatform library that enables the execution of shell commands.
## Features
## Targets
* Execute commands on the shell.
* Multiplatform support
* JVM
* JavaScript
* Native (Linux)
| Target | Status |
|------------------|---------------|
| JVM | Supported |
| JavaScript | Supported |
| Native (Linux) | Supported |
| Native (Windows) | Not Supported |
## Installation
@@ -29,7 +30,7 @@ dependencies {
```kotlin
import com.infendro.shell.Shell
fun main() {
suspend fun main() {
// the command to execute
val command = arrayOf("echo", "Hello World!")