Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hacktons/homebrew-cli
Some cli tools that help to ease handy work, such as wifi-adb, apk-comparison; Getting start with homebrew installation
https://github.com/hacktons/homebrew-cli
apk-compare cli golang homebrew-cli wifi-adb-debug
Last synced: 10 days ago
JSON representation
Some cli tools that help to ease handy work, such as wifi-adb, apk-comparison; Getting start with homebrew installation
- Host: GitHub
- URL: https://github.com/hacktons/homebrew-cli
- Owner: hacktons
- License: apache-2.0
- Created: 2018-01-18T04:37:43.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-13T05:34:13.000Z (about 5 years ago)
- Last Synced: 2023-03-03T00:47:54.185Z (almost 2 years ago)
- Topics: apk-compare, cli, golang, homebrew-cli, wifi-adb-debug
- Language: Go
- Homepage:
- Size: 12.4 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# homebrew-cli
Some cli tools that help to ease handy work, most of these are written in Golang.We’ve shipped the tools with `Homebrew Formula` , so you can use brew to install.
## wifiadb
`wifiadb` is used to connect adb devices `wirelessly`.### 1. Install cli
Make sure you have `homebrew` installed.
```bash
:~aven$ brew install wifiadb
```
### 2. How to use1. Connect device to macOS, make sure both device and macOS are in the same network;
2. Use `wifiadb` to reconnect device, follow the cli prompt to unplugin the USB;To make a preview, you can see that our device is connected as `10.252.238.184:5555` after running `wifiadb`.
![](doc/wifi-adb.png)
## apkcompare
This tool is used to make comparison between apk files. It will generate a `xlsx` ouput, display the size difference.
### 1. Install cli
```bash
:~aven$ brew install apkcompare
```### 2. How to use
Type `apkcompare` into terminal to find out the usage help.
Generally, it receives a folder of apks as input parameter (see as `-p, --path`), then generate a `xlsx` report.
```bash
apkcompare -p ./ -o report.xlsx
```![](doc/apk-compare.png)