SKSubprocess

public struct SKSubprocess : Codable

Undocumented

  • The URL to the receiver’s executable.

    Declaration

    Swift

    public var executableURL: URL
  • The arguments that should be used to launch the executable.

    Declaration

    Swift

    public var arguments: [String]?
  • The environment for the receiver.

    If nil, the environment is inherited from the process that created the receiver.

    Declaration

    Swift

    public var environment: [String : String]?
  • The current directory for the receiver.

    If nil, the current directory is inherited from the process that created the receiver.

    Declaration

    Swift

    public var currentDirectoryURL: URL?
  • Whether the standard error should also be piped to the output.

    Declaration

    Swift

    public var shouldPipeStandardError: Bool