mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
25 lines
764 B
Swift
25 lines
764 B
Swift
//
|
|
// List.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
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(())
|
|
}
|
|
}
|