-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c03bdc
commit 6dab5ae
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# brew mas | ||
|
||
> Mas is a simple command line interface for the Mac App Store. | ||
- Search the Mac App Store by app name and return matching identifiers: | ||
|
||
`mas search {{app_name}}` | ||
|
||
- Install or update a previously purchased application: | ||
|
||
`mas install {{app_name}} {{app_identifier}}` | ||
|
||
- Show all installed applications and their product identifiers: | ||
|
||
`mas list` | ||
|
||
- List installed apps with pending updates: | ||
|
||
`mas outdated` | ||
|
||
- Install all pending updates: | ||
|
||
`mas upgrade` | ||
|
||
- Install updates for a specific app: | ||
|
||
`mas upgrade {{app_identifier}}` |