https://github.com/hpedrorodrigues/adbe
A simple CLI to extend some ADB commands on multiple devices
https://github.com/hpedrorodrigues/adbe
adb adb-commands android cli
Last synced: about 1 month ago
JSON representation
A simple CLI to extend some ADB commands on multiple devices
- Host: GitHub
- URL: https://github.com/hpedrorodrigues/adbe
- Owner: hpedrorodrigues
- License: mit
- Created: 2015-07-22T02:18:46.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-16T16:45:17.000Z (almost 10 years ago)
- Last Synced: 2025-08-22T04:51:26.032Z (about 2 months ago)
- Topics: adb, adb-commands, android, cli
- Language: Ruby
- Homepage: http://hpedrorodrigues.github.io/ADBe/
- Size: 99.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ADBe
A simple Command-line interface (CLI) that builds upon the existing Android Debug Bridge (ADB) to
provide better support when dealing with running adb commands on more than one device.Inspired by [adb-extended](https://github.com/paulombcosta/adb-extended).
## Motivation
ADB does not support some commands on multiple devices.
If you run a simple command like `adb shell` with multiple connected devices results in an error
like this:
But if you run with adbe you will get this:

Giving the option to run this command on individual devices or on all of them.
## Usage
- Download project.
- Move adbe.scala or adbe.rb file that is located in src to the folder you want and add to the path.
- Now simply run the command `adbe`.## Requirements
ADB, Scala 2.11.5 or greater or Ruby 2.2.1 or greater, in your PATH.
## More
For more information on installing the scala check out facilities [page](./INSTALLATION.md).
ADBe is a work in progress, feel free to improve it.
## License
ADBe is released under the MIT license. See [LICENSE](./LICENSE) for details.
## Issues
For questions, bug reports, improve documentation, and feature request please
search through existing
[issue](https://github.com/hpedrorodrigues/ADBe/issues) and if you don't
find and answer open a new one [here](https://github.com/hpedrorodrigues/ADBe/issues/new).
If you need support send me an [email](mailto:hs.pedro.rodrigues@gmail.com). You can also
contact [me](https://github.com/hpedrorodrigues) for any non public concerns.## References
- [Getting started with Scala](http://www.scala-lang.org/documentation/getting-started.html)
- [Getting started with Ruby](http://ruby-doc.org/gettingstarted/)