├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .spi.yml ├── .swift-format ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── SwiftCommand │ ├── AsyncCharacterSequence.swift │ ├── AsyncLineSequence.swift │ ├── AsyncUnicodeScalarSequence.swift │ ├── ChildProcess.swift │ ├── Command.swift │ ├── Either.swift │ ├── ExitStatus.swift │ ├── FileHandle+Async.swift │ ├── FilePath+extension.swift │ ├── InputSource.swift │ ├── OutputDestination.swift │ ├── OutputType.swift │ └── ProcessOutput.swift └── Tests └── SwiftCommandTests └── SwiftCommandTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/.swift-format -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftCommand/AsyncCharacterSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/AsyncCharacterSequence.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/AsyncLineSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/AsyncLineSequence.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/AsyncUnicodeScalarSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/AsyncUnicodeScalarSequence.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/ChildProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/ChildProcess.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/Command.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/Either.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/Either.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/ExitStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/ExitStatus.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/FileHandle+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/FileHandle+Async.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/FilePath+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/FilePath+extension.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/InputSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/InputSource.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/OutputDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/OutputDestination.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/OutputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/OutputType.swift -------------------------------------------------------------------------------- /Sources/SwiftCommand/ProcessOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Sources/SwiftCommand/ProcessOutput.swift -------------------------------------------------------------------------------- /Tests/SwiftCommandTests/SwiftCommandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zollerboy1/SwiftCommand/HEAD/Tests/SwiftCommandTests/SwiftCommandTests.swift --------------------------------------------------------------------------------