# File lib/specinfra/command_result.rb, line 20
    def [](x)
      warn "CommandResult#[] is obsolete. Use accessors instead. in #{caller[0]}"
      case x
      when :stdout, :stderr, :exit_status, :exit_signal
        self.send(x)
      end
    end