mas/App/Commands/List.swift
2018-07-04 14:56:10 -06:00

28 lines
797 B
Swift

//
// List.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
import Commandant
import Result
struct ListCommand: CommandProtocol {
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.shared()
guard let products = softwareMap.allProducts() else {
print("No installed apps found")
return .success(())
}
for product in products {
print("\(product.itemIdentifier) \(product.appName) (\(product.bundleVersion))")
}
return .success(())
}
}