# File lib/lvm/wrapper/pvs.rb, line 32
        def list
          output = External.cmd(@command)
          data = parse(output)
          if block_given?
            return data.each { |obj| yield obj }
          else
            return data
          end
        end