EchoSettings
public struct EchoSettings: OptionSetType
Echo settings
-
Undocumented
Declaration
Swift
public struct EchoSettings: OptionSetType
-
Undocumented
Declaration
Swift
public struct EchoSettings: OptionSetType
-
Dont echo anything, this is the default settings
Declaration
Swift
public static var None = EchoSettings(rawValue: 0)
-
Echo the stdout from the run command to the terminal
Declaration
Swift
public static let Stdout = EchoSettings(rawValue: 1 << 0)
-
Echo the stderr from the run command to the terminal
Declaration
Swift
public static let Stderr = EchoSettings(rawValue: 1 << 1)
-
Echo the command executed to the terminal
Declaration
Swift
public static let Command = EchoSettings(rawValue: 1 << 2)