我创建了一个“Shebang”快速脚本。
我正在使用解析输入参数Process.arguments
如果将“管道”信息通过管道传输到脚本中,我该如何阅读?
#!/usr/bin/env xcrun swift
import Foundation
for argument in Process.arguments {
// parse the input arguments
}
// if the input is piped into the script?:
// if PIPE??? {
print("Handling pipe")
let pipe = NSPipe()
let handle = pipe.fileHandleForReading
let data = handle.readDataToEndOfFile()
print("End of pip")
}