Issue
If I try adb shell $PWD
it reads the working directory of the current system and not the adb device.
How can I read the $PWD
in the Android device instead via adb?
Solution
You should try something like
adb shell 'echo $PWD'
this will expand $PWD
to the current working directory in the device.
Answered By - Lino
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.