Skip to content

Shell is a simple package that gives you the ability to call shell commands through Swift.

License

Notifications You must be signed in to change notification settings

BinaryBirds/shell-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ShellKit (🥚)

Shell is a simple package that gives you the ability to call shell commands through Swift.

Usage

Run (sync):

import ShellKit

let output = try Shell().run("ls ~")

Run (async):

import ShellKit

Shell().run("sleep 2 && ls ~") { result, error in
    //...
}

Shell (bash) with environment variables:

import ShellKit

let shell = Shell("/bin/bash", env: ["ENV_SAMPLE_KEY": "Hello world!"])
let out = try shell.run("echo $ENV_SAMPLE_KEY")

You can even set custom ouptut & error handlers.

Install

Just use the Swift Package Manager as usual:

.package(url: "https://github.com/binarybirds/shell-kit", from: "1.0.0"),

Don't forget to add "ShellKit" to your target as a dependency:

.product(name: "ShellKit", package: "shell-kit"),

That's it.

License

WTFPL - Do what the fuck you want to.

About

Shell is a simple package that gives you the ability to call shell commands through Swift.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published