All Projects → mas-cli → Mas

mas-cli / Mas

Licence: mit
📦 Mac App Store command line interface

Programming Languages

swift
15916 projects
objective c
16641 projects - #2 most used programming language
shell
77523 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Mas

Servpane
A launchd menu bar app for Mac
Stars: ✭ 99 (-98.85%)
Mutual labels:  osx, homebrew
Iterm Fish Fisher Osx
Complete guide and Bash script to install Command Line Tools + Homebrew + iTerm2 + Fish Shell + Fisher + Plugins for development purposes
Stars: ✭ 249 (-97.11%)
Mutual labels:  osx, homebrew
App Downloader
Easily search for macOS apps from the `homebrew cask` app catalog.
Stars: ✭ 166 (-98.07%)
Mutual labels:  osx, homebrew
Homebrew Pothos
Homebrew formulas for Pothos and SoapySDR
Stars: ✭ 52 (-99.4%)
Mutual labels:  osx, homebrew
homebrew-adobe
@Homebrew tap for @adobe apps and plugins.
Stars: ✭ 24 (-99.72%)
Mutual labels:  homebrew, osx
Dotfiles
vim, zsh, git, homebrew, nvm, neovim - my whole world
Stars: ✭ 2,217 (-74.23%)
Mutual labels:  osx, homebrew
Openssl Osx Ca
Simple periodic task to sync OSX Keychain certs to Homebrew installed OpenSSL & LibreSSL
Stars: ✭ 185 (-97.85%)
Mutual labels:  osx, homebrew
meta-package-manager
🎁 a wrapper around all package managers
Stars: ✭ 277 (-96.78%)
Mutual labels:  homebrew, mac-app-store
mac-cleanup-sh
🗑️ Cleanup script for macOS (DEPRECATED)
Stars: ✭ 1,585 (-81.58%)
Mutual labels:  homebrew, osx
brewfile
🍎 Brewfile to install softwares in macOS for engineers
Stars: ✭ 37 (-99.57%)
Mutual labels:  homebrew, osx
Jarvis
Dotfiles for a powerful, web development-focused environment powered by Neovim, iTerm2, tmux, and zsh
Stars: ✭ 617 (-92.83%)
Mutual labels:  osx, homebrew
Xdebug Osx
Simple bash script to toggle xdebug on/off in OSX
Stars: ✭ 258 (-97%)
Mutual labels:  osx, homebrew
Mos
一个用于在 macOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 | A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on macOS
Stars: ✭ 7,772 (-9.66%)
Mutual labels:  osx, homebrew
Cryptojs.swift
Cross-platform cryptographic functions in swift
Stars: ✭ 42 (-99.51%)
Mutual labels:  osx
Homebrew Public
Homebrew formula for open-source software developed by Spotify
Stars: ✭ 45 (-99.48%)
Mutual labels:  homebrew
Goreleaser
Deliver Go binaries as fast and easily as possible
Stars: ✭ 9,290 (+7.99%)
Mutual labels:  homebrew
Hammerspoon
Staggeringly powerful macOS desktop automation with Lua
Stars: ✭ 8,540 (-0.73%)
Mutual labels:  osx
Homebrew Clickhouse
ClickHouse for MacOS Sierra and High Sierra.
Stars: ✭ 50 (-99.42%)
Mutual labels:  homebrew
Xhyve
Use xhyve from Go (OS X only)
Stars: ✭ 45 (-99.48%)
Mutual labels:  osx
Picasso
Homebrew PICA200 shader assembler
Stars: ✭ 41 (-99.52%)
Mutual labels:  homebrew

mas-cli

mas-cli

A simple command line interface for the Mac App Store. Designed for scripting and automation.

Software License Swift 5 GitHub Release Reviewed by Hound Build, Test, & Lint

📲 Install

🍺 Homebrew

Homebrew is the preferred way to install:

brew install mas

MacPorts

MacPorts works as well:

sudo port install mas

⚠️ Note that macOS 10.15 (Catalina) is required to install mas from MacPorts or the core Homebrew formula.

☎️ Older macOS Versions

We provide a custom Homebrew tap with pre-built bottles for all macOS versions since 10.11.

To install mas from our tap:

brew install mas-cli/tap/mas

Swift 5 Runtime Support

mas requires Swift 5 runtime support. macOS 10.14.4 and later include it, but earlier releases did not. Without it, running mas may report an error similar to this:

dyld: Symbol not found: _$s11SubSequenceSlTl

To get Swift 5 support, you have a few options:

🐙 GitHub Releases

Alternatively, binaries are available in the GitHub Releases.

🤳🏻 Usage

Each application in the Mac App Store has a product identifier which is also used for mas-cli commands. Using mas list will show all installed applications and their product identifiers.

$ mas list
446107677 Screens
407963104 Pixelmator
497799835 Xcode

It is possible to search for applications by name using mas search which will search the Mac App Store and return matching identifiers. Include the --price flag to include prices in the result.

$ mas search Xcode
497799835 Xcode
688199928 Docs for Xcode
449589707 Dash 3 - API Docs & Snippets. Integrates with Xcode, Alfred, TextWrangler and many more.
[...]

To install or update an application simply run mas install with an application identifier:

$ mas install 808809998
==> Downloading PaintCode 2
==> Installed PaintCode 2

If you want to install the first result that the search command returns, use the lucky command.

$ mas lucky twitter
==> Downloading Twitter
==> Installed Twitter

Please note that this command will not allow you to install (or even purchase) an app for the first time: use the purchase command in that case. The purchase command is not supported as of macOS 10.15 Catalina. Please see Known Issues.

$ mas purchase 768053424
==> Downloading Gapplin
==> Installed Gapplin

Please note that you may have to re-authenticate yourself in the App Store to complete the purchase. This is the case if the application is not free or if you configured your account not to remember the credentials for free purchases.

Use mas outdated to list all applications with pending updates.

$ mas outdated
497799835 Xcode (7.0)
446107677 Screens VNC - Access Your Computer From Anywhere (3.6.7)

mas is only able to install/update applications that are listed in the Mac App Store itself. Use softwareupdate(8) utility for downloading system updates (e.g. Xcode Command Line Tools)

To install all pending updates run mas upgrade.

$ mas upgrade
Upgrading 2 outdated applications:
Xcode (7.0), Screens VNC - Access Your Computer From Anywhere (3.6.7)
==> Downloading Xcode
==> Installed Xcode
==> Downloading iFlicks
==> Installed iFlicks

Updates can be performed selectively by providing the app identifier(s) to mas upgrade

$ mas upgrade 715768417
Upgrading 1 outdated application:
Xcode (8.0)
==> Downloading Xcode
==> Installed Xcode

🚏📥 Sign-in

The signin command is not supported as of macOS 10.13 High Sierra. Please see Known Issues.

To sign into the Mac App Store for the first time run mas signin.

$ mas signin [email protected]
==> Signing in to Apple ID: [email protected]
Password:

If you experience issues signing in this way, you can ask to sign in using a graphical dialog (provided by Mac App Store application):

$ mas signin --dialog [email protected]
==> Signing in to Apple ID: [email protected]

You can also embed your password in the command.

$ mas signin [email protected] 'ZdkM4f$gzF;gX3ABXNLf8KcCt.x.np'
==> Signing in to Apple ID: [email protected]

Use mas signout to sign out from the Mac App Store.

🍺 Homebrew integration

mas is integrated with homebrew-bundle. If mas is installed, and you run brew bundle dump, then your Mac App Store apps will be included in the Brewfile created. See the homebrew-bundle docs for more details.

⚠️ Known Issues

Over time, Apple has changed the APIs used by mas to manage App Store apps, limiting its capabilities. Please sign in or purchase apps using the App Store app instead. Subsequent redownloads can be performed with mas install.

  • ⛔️ The signin command is not supported as of macOS 10.13 High Sierra. #164
  • ⛔️ The purchase command is not supported as of macOS 10.15 Catalina. #289
  • ⛔️ The account command is not supported as of macOS 12 Monterey. #417

The versions mas sees from the app bundles on your Mac don't always match the versions reported by the App Store for the same app bundles. This leads to some confusion when the outdated and upgrade commands differ in behavior from what is shown as outdated in the App Store app. Further confusing matters, there is often some delay due to CDN propagation and caching between the time a new app version is released to the App Store, and the time it appears available in the App Store app or via the mas command. These issues cause symptoms like #384 and #387.

Macs with Apple silicon can install and run iOS and iPadOS apps from the App Store. mas is not yet aware of these apps, and is not yet able to install or update them. #321

💥 When something doesn't work

If you see this error, it's probably because you haven't installed the app through the App Store yet. See #46.

This redownload is not available for this Apple ID either because it was bought by a different user of the item was refunded or cancelled.

If mas doesn't work for you as expected (e.g. you can't update/download apps), run mas reset and try again. If the issue persists, please file a bug. All your feedback is much appreciated!

📺 Using tmux

mas operates via the same system services as the Mac App Store. These exist as separate processes with communication through XPC. As a result of this, mas experiences similar problems as the pasteboard when running inside tmux. A wrapper tool exists to fix pasteboard behaviour which also works for mas.

You should consider configuring tmux to use the wrapper but if you do not wish to do this it can be used on a one-off basis as follows:

brew install reattach-to-user-namespace
reattach-to-user-namespace mas install

ℹ️ Build from source

You can build from Xcode by opening the root mas directory, or from the Terminal:

script/bootstrap
script/build

Build output can be found in the build/ directory within the project.

Tests

The tests in this project are a recent work-in-progress. Since Xcode does not officially support tests for command-line tool targets, all logic is part of the MasKit target with tests in MasKitTests. Tests are written using Quick.

script/test

📄 License

mas-cli was created by @argon. Code is under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].