尝试使用swift脚本在系统中运行可执行文件。我按照第二个答案here,但是我遇到了一个错误,抱怨基金会没有正确构建:
错误:
/usr/lib/swift/CoreFoundation/CoreFoundation.h:25:10: note: while building module 'SwiftGlibc' imported from /usr/lib/swift/CoreFoundation/CoreFoundation.h:25:
#include <sys/types.h>
^
代码:
import Foundation
func execCommand(command: String, args: [String]) -> String {
if !command.hasPrefix("/") {
let commandFull = execCommand(command: "/usr/bin/which", args: [command]).trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
return execCommand(command: commandFull, args: args)
} else {
let proc = Process()
proc.launchPath = command
proc.arguments = args
let pipe = Pipe()
proc.standardOutput = pipe
proc.launch()
let data = pipe.fileHandleForReading.readDataToEndOfFile()
return String(data: data, encoding: String.Encoding.utf8)!
}
}
let commandOutput = executeCommand("/bin/echo", ["Hello, I am here!"])
println("Command output: \(commandOutput)")
我在Linux(Archlinux)中使用Sublime REPL运行它。问题:
我制作的所有其他小项目都运作良好,从未发现基金会的错误,因为它在这里抱怨。我的安装是问题吗?
是否有使用Glibc运行可执行文件的更简单方法?
答案 0 :(得分:0)
回答我自己的问题。这似乎是Sublime REPL for swift中的一个错误,因为在命令行中运行它会使代码运行没有问题。此外,代码中有一些问题没有更新到Swift 3,下面是传递代码。我仍然想找到一种使用Glibc在Swift中运行可执行文件的方法。
#! /usr/bin/swift
import Foundation
func execCommand(command: String, args: [String]) -> String {
if !command.hasPrefix("/") {
let commandFull = execCommand(command: "/usr/bin/which", args: [command]).trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
return execCommand(command: commandFull, args: args)
} else {
let proc = Process()
proc.launchPath = command
proc.arguments = args
let pipe = Pipe()
proc.standardOutput = pipe
proc.launch()
let data = pipe.fileHandleForReading.readDataToEndOfFile()
return String(data: data, encoding: String.Encoding.utf8)!
}
}
let commandOutput = execCommand(command:"/bin/echo", args:["Hello, I am here!"])
print("Command output: \(commandOutput)")