mas/mas-cli/Commands/ListInstalled.swift

27 lines
794 B
Swift
Raw Normal View History

//
// ListInstalled.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
struct ListInstalledCommand: CommandType {
let verb = "list-installed"
let function = "Lists apps from the Mac App Store which are currently installed"
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
switch mode {
case .Arguments:
let softwareMap = CKSoftwareMap.sharedSoftwareMap()
let products = softwareMap.allProducts() as! [CKSoftwareProduct]
2015-08-22 11:29:22 +00:00
for product in products {
println("\(product.itemIdentifier) \(product.appName)")
2015-08-22 11:29:22 +00:00
}
default:
break
}
return .success(())
}
}