Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harryzcy/ascheck
A command-line app that bulk-checks your apps for the Apple Silicon support
https://github.com/harryzcy/ascheck
apple-silicon-support applesilicon cli golang macos
Last synced: 2 months ago
JSON representation
A command-line app that bulk-checks your apps for the Apple Silicon support
- Host: GitHub
- URL: https://github.com/harryzcy/ascheck
- Owner: harryzcy
- License: mit
- Archived: true
- Created: 2021-03-27T18:07:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T04:26:19.000Z (over 1 year ago)
- Last Synced: 2024-06-19T17:50:54.186Z (7 months ago)
- Topics: apple-silicon-support, applesilicon, cli, golang, macos
- Language: Go
- Homepage:
- Size: 142 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Apple Silicon Check
[![Actions Status](https://github.com/harryzcy/ascheck/workflows/CI/badge.svg)](https://github.com/harryzcy/ascheck/actions)
[![codecov](https://codecov.io/gh/harryzcy/ascheck/branch/main/graph/badge.svg)](https://codecov.io/gh/harryzcy/ascheck)
[![Go Report Card](https://goreportcard.com/badge/github.com/harryzcy/ascheck)](https://goreportcard.com/report/github.com/harryzcy/ascheck)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)A CLI tool that bulk-checks your apps for the Apple Silicon support.
---
## Table of Contents
- [Installation](#installation)
- [Homebrew tap](#homebrew-tap)
- [go install](#go-install)
- [Compile from source](#compile-from-source)
- [Example Usage](#example-usage)
- [Show help](#show-help)
- [Run](#run)
- [Output](#output)---
## Installation
### Homebrew tap
```shell
brew tap harryzcy/ascheck
brew install ascheck
```### go install
```shell
go install github.com/harryzcy/ascheck
```### Compile from source
#### clone
```shell
git clone https://github.com/harryzheng/ascheck
cd ascheck
```#### get the dependencies
```shell
go mod tidy
```#### build
```shell
go build -o ascheck .
```## Example Usage
### Show help
```shell
ascheck -h
```### Run
```shell
ascheck
```### Output
The output will show:
```shell
NAME CURRENT ARCHITECTURES ARM SUPPORT
------------------------------------------------
App Store Intel 64 Supported
Automator Intel 64 Supported
...
```- NAME: name of the app
- CURRENT ARCHITECTURES: the architecture of the currently installed version
- ARM SUPPORT: the arm support information on [Does it Arm](https://github.com/ThatGuySam/doesitarm)