This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Via Tim Condon | |
| @discardableResult | |
| func shell(_ args: String..., returnStdOut: Bool = false, stdIn: Pipe? = nil) throws -> (Int32, Pipe) { | |
| return try shell(args, returnStdOut: returnStdOut, stdIn: stdIn) | |
| } | |
| @discardableResult | |
| func shell(_ args: [String], returnStdOut: Bool = false, stdIn: Pipe? = nil) throws -> (Int32, Pipe) { | |
| let task = Process() |
OlderNewer