Method: App::Terminal.command_capture

Defined in:
lib/core/terminal.rb

.command_capture(commands, location = nil, verbose = true, verbose_cd = true) ⇒ Object

Runs a series of commands in the terminal (and captures the output).

Returns:

  • void



62
63
64
# File 'lib/core/terminal.rb', line 62

def self.command_capture(commands, location = nil, verbose = true, verbose_cd = true)
    command(commands, location, verbose, verbose_cd, true)
end