From 676a4d861a900f611a917bd58d2d3ba4c2219e29 Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 23:08:51 +0000 Subject: [PATCH] Add Home --- Home.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..d4c67cd --- /dev/null +++ b/Home.md @@ -0,0 +1,26 @@ +# shell-kt + +`shell-kt` is a Kotlin Multiplatform library that enables the execution of shell commands. + +## Targets + +| Target | Status | +|------------------|---------------| +| JVM | Supported | +| JavaScript | Supported | +| Native (Linux) | Supported | +| Native (Windows) | Not Supported | + +## Installation + +Add the following to your `build.gradle.kts`. + +```kotlin +repositories { + maven("https://git.infendro.com/api/packages/Infendro/maven") +} + +dependencies { + implementation("com.infendro:shell:1.0.0") +} +``` \ No newline at end of file