Last active
February 8, 2021 12:28
-
-
Save Tikolu/da3dfd7bcda0f57cd0d15a166ab01638 to your computer and use it in GitHub Desktop.
Android Debug Bridge Shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: ADB SHELL CREATED BY TIKOLU | |
:: TIKOLU.NET | |
@ECHO OFF | |
TITLE Android Debug Bridge | |
ECHO Android Debug Bridge Shell | |
ECHO Created by Tikolu - tikolu.net | |
ECHO. | |
:LOOP | |
SET input= | |
SET /P input=" > " | |
IF "%input%"=="" EXIT | |
adb %input% | |
GOTO LOOP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment