class Mixlibrary::Core::Shell::ShellCall

Public Class Methods

new() click to toggle source
# File lib/mixlibrary/core/shell/shell_call.rb, line 9
def initialize
  
end

Public Instance Methods

shell(command, options) click to toggle source
# File lib/mixlibrary/core/shell/shell_call.rb, line 13
def shell(command, options)
  result = shell_out("#{command}", options)
  return result  
end
shell!(command, options) click to toggle source
# File lib/mixlibrary/core/shell/shell_call.rb, line 18
def shell!(command, options)
  result = shell_out!("#{command}", options)
  return result  
end