mas/mas-cli/Commands/List.swift
2015-12-30 22:00:32 +00:00

22 lines
No EOL
641 B
Swift

//
// List.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
struct ListCommand: CommandType {
typealias Options = NoOptions<MASError>
let verb = "list"
let function = "Lists apps from the Mac App Store which are currently installed"
func run(options: Options) -> Result<(), MASError> {
let softwareMap = CKSoftwareMap.sharedSoftwareMap()
let products = softwareMap.allProducts()
for product in products {
print("\(product.itemIdentifier) \(product.appName)")
}
return .Success(())
}
}