Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ktoso/adb-bash_autocomplete
bash autocompletition for adb
https://github.com/ktoso/adb-bash_autocomplete
Last synced: 29 days ago
JSON representation
bash autocompletition for adb
- Host: GitHub
- URL: https://github.com/ktoso/adb-bash_autocomplete
- Owner: ktoso
- Created: 2011-05-28T10:38:18.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-17T12:50:24.000Z (about 13 years ago)
- Last Synced: 2024-12-07T01:44:00.679Z (about 1 month ago)
- Language: Shell
- Homepage: blog.project13.pl
- Size: 93.8 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Android Debug Bridge Bash Completition
======================================
This script is a simple bash completition file, which allows you to easier work with `adb`.
For example you can now:```
ktoso@dynames $ adb -s
037c70c44240f517 HT9C3L902456ktoso@dynames $ adb -s H
ktoso@dynames $ adb -s HT9C3L902456
bugreport disconnect get-serialno install logcat push remount start-server uninstall wait-for-device
connect emu get-state jdwp ppp rcpip root status-window usb
devices forward help kill-server pull reboot shell sync version
ktoso@dynames $ adb -s HT9C3L902456 sh
ktoso@dynames $ adb -s HT9C3L902456 shell
$
```Install How-To
--------------
The installation is super simple, just make sure you have bash-completition and run this command:```
curl https://raw.github.com/ktoso/adb-bash_autocomplete/master/install.sh | sudo bash
```What it actually does is this, if you'd rather paste in the full installation code.
```
su -
cd /etc/bash_completion.d/
rm adb
wget https://github.com/ktoso/adb-bash_autocomplete/raw/master/adb
exit
echo 'done!'
```