Quote:
Originally Posted by escavi
I just learned how to remove apks from the "all apps" section of my Evo. I wanted to further organize but creating sub folders to move certain categoriy apk's and programs over.
First, it this even possible? Second, if so, what is the adb command for creating a folder and moving them over?
Thank You.
|
I think its
adb push = upload file from pc to device
adb pull = download file from device to pc
adb shell = enter shell
{shell commands}
su = grants super user
ls = list dir
mkdir = create dir
cp = copy
mv = move
rm = remove
cd = navigate to dir
aka its same as linux shell commands