avee137
avee137

Reputation: 541

Android adb Unable to pull from emulator

I am trying to pull a screen-capture from emulator using following command and getting an error displayed below the command :-

$ adb shell pull /sdcard/screencap.png 

Error :-

/system/bin/sh: pull: not found

screencapture is working and I can see the file on the emulator. I have setup the android sdk path in in my .bashrc as :-

export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/tools

Upvotes: 0

Views: 988

Answers (1)

cybersam
cybersam

Reputation: 66989

You should use adb pull, not adb shell pull.

Upvotes: 3

Related Questions