Class: Inspec::Resources::Bash

Inherits:
Cmd
  • Object
show all
Defined in:
lib/inspec/resources/bash.rb

Instance Attribute Summary

Attributes inherited from Cmd

#command

Instance Method Summary collapse

Methods inherited from Cmd

#exist?, #exit_status, #result, #stderr, #stdout

Constructor Details

#initialize(command, options = {}) ⇒ Bash

Returns a new instance of Bash.



23
24
25
26
27
# File 'lib/inspec/resources/bash.rb', line 23

def initialize(command, options = {})
  @raw_command = command
  options[:shell] = "bash" if options.is_a?(Hash)
  super(CommandWrapper.wrap(command, options))
end

Instance Method Details

#to_sObject



29
30
31
# File 'lib/inspec/resources/bash.rb', line 29

def to_s
  "Bash command #{@raw_command}"
end