Created
July 22, 2015 19:21
-
-
Save Seasons7/836d3676884a40c8c98a to your computer and use it in GitHub Desktop.
NSTask Sample for Swift
This file contains 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
import Cocoa | |
import Foundation | |
var str = "Hello, playground" | |
var task:NSTask = NSTask() | |
var pipe:NSPipe = NSPipe() | |
task.launchPath = "/bin/ls" | |
task.arguments = ["-la"] | |
task.standardOutput = pipe | |
task.launch() | |
var handle = pipe.fileHandleForReading | |
var data = handle.readDataToEndOfFile() | |
var result_s = NSString(data: data, encoding: NSUTF8StringEncoding) | |
print(result_s) |
buildTask.launch()
is not up to date anymore. Since High Sierra, Process().lauch()
is deprecated. Use Process().run
instead and catch the error that may be thrown.
See Apple Developer Documentation for launch()
This Tutorial goes a bit more into detail regarding NSTasks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using this method for running app but I got "Message from debugger: Terminated due to signal 9".Any idea?
Message from debugger: Terminated due to signal 9