ubuntu linux 上adb push多个文件高效快捷的方法技巧

默认adb push只能一个文件或者这个文件夹下面所有的文件 是不是很淡疼~~
我是ubuntu linux解决如下
假如你的ubuntu上没有adb 请自行安装 yes | sudo apt-get install android-tools-adb android-tools-fastboot
1. ctrl+alt+t打开终端 输入 for i in
2.打开文件管理器选中你同时push的几个文件,直接拖动到终端
3.接着在终端继续上输入 ;do echo "$i"; adb push "$i" /sdcard/; done

简单高校快捷~~





参考 http://stackoverflow.com/questions/12901240/adb-push-multiple-files-with-the-same-extension

猜你喜欢

转载自govfate.iteye.com/blog/1986800