# File lib/lvm.rb, line 47
    def raw(args)
      output = []
      External.cmd("#{@command} #{args}") do |line|
        output << line
      end
      if block_given?
        return output.each { |l| yield l }
      else
        return output.join
      end
    end