Swiftpack.co - Lakr233/AuxiliaryExecute as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Lakr233.
Lakr233/AuxiliaryExecute 2.1.0
A Swift wrapper for system shell over posix_spawn with search path and env support.
⭐️ 19
🕓 5 weeks ago
.package(url: "https://github.com/Lakr233/AuxiliaryExecute.git", from: "2.1.0")

AuxiliaryExecute

A Swift wrapper for system shell over posix_spawn with search path and env support.

Usage

import AuxiliaryExecute

AuxiliaryExecute.local.bash(command: "echo nya")

Customization & Defaults

The source for this package is well explained in details along with comments. Feel free looking for them.

// automatically search for binary within env PATH
let result = AuxiliaryExecute.local.shell(
    command: "bash",
    args: ["-c", "echo $mua"],
    environment: ["mua": "nya"],
    timeout: 0
) { stdout in
    print(stdout)
} stderrBlock: { stderr in
    print(stderr)
}

// or call with binary's full path
func spawn(
    command: String,
    args: [String] = [],
    environment: [String: String] = [:],
    timeout: Double = 0,
    stdoutBlock: ((String) -> Void)? = nil,
    stderrBlock: ((String) -> Void)? = nil
)

// for customize option for shell
func appendSearchPath(with value: String)
func updateExtraSearchPath(with block: (inout [String]) -> Void)
func updateOverwriteTable(with block: (inout [String: String?]) -> Void)

License

AuxiliaryExecute is licensed under MIT.


Copyright © 2021 Lakr Aream. All Rights Reserved.

GitHub

link
Stars: 19
Last commit: 5 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Async Await + Dispatch Source Implementation
2 years ago

Fixed bugs on mishandling waitpid results.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics