Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to write a windows batch file that will open my ADB Shell...then write one command and execute within the adb shell, not the windows command prompt. I am trying to figure out how I get the batch to write the command after opening the adb shell into that prompt instead of command prompt. When I attempt it now, it opens the adb shell but then writes the command I am trying to execute in command prompt instead of the adb shell.

This is what I would manually do after opening my windows command prompt.

cd\
cd adb
adb shell
iperf -s -u -il -p0001 - this line is written in the adb shell prompt $ to open particular port for data

Any help for this newbie would be much appreciated.

share|improve this question

2 Answers

You could try and pipe the command into the shell. Your complete batch would look like this

cd\
cd adb
iperf -s -u -il -p0001 | adb shell
share|improve this answer
Thanks for the reply. How would I write that in the batch file exactly then? I currently just use this command in the batch file to start the adb shell START /MAX D:\adb\adb shell Any assistance would be much appreciated. – user1726186 Oct 9 '12 at 13:29
I have edited my answer to show the whole batch file, just copy and paste and run :) – Bali C Oct 9 '12 at 13:30
I tried it out. Unfortunately it still will not run the command in the adb shell prompt. Thanks anyways. – user1726186 Oct 10 '12 at 23:38
Ah right, that's all I can think of, sorry :) – Bali C Oct 11 '12 at 7:53

Try this:

adb shell "iperf -s -u -il -p0001"

Put your shell command in quotes. For instance if I want to run an app on my android phone I will write:

adb shell "am start -n com.package.name/com.package.name.Activity"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.