Process icon indicating copy to clipboard operation
Process copied to clipboard

A POSIX compliant library to run external applications in Swift.

Results 2 Process issues
Sort by recently updated
recently updated
newest added

I can't get the results of executing `curl https://swift.org/download/` Here is my code: ```swift import Process let result = Process.exec("curl https://swift.org/download/") print(result.stdout) ```

In some cases I want to parse the output from a long running Process and selectively output it to the terminal, but it seems that is not currently supported? Any...

help wanted