From fd54489747dadbfd077b8421d9128ee5a6089ae3 Mon Sep 17 00:00:00 2001 From: Infendro Date: Sun, 14 Dec 2025 00:08:23 +0100 Subject: [PATCH] update README --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 5342a15..08719f5 100644 --- a/README.md +++ b/README.md @@ -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!")