android-apk-installer
This commit is contained in:
parent
4f40a42c29
commit
ea86cbd4de
3 changed files with 23 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,4 @@
|
||||||
packages
|
packages
|
||||||
test
|
test
|
||||||
|
test.apk
|
||||||
|
test2.apk
|
||||||
|
|
21
android-app-installer.sh
Executable file
21
android-app-installer.sh
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/system/xbin/bash
|
||||||
|
|
||||||
|
finds=$(find $1*.apk)
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
i=0
|
||||||
|
for wort in $finds
|
||||||
|
do
|
||||||
|
|
||||||
|
echo "Installiere $wort"
|
||||||
|
|
||||||
|
pm install $wort
|
||||||
|
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
sync
|
||||||
|
|
||||||
|
echo "Fertig!!!"
|
||||||
|
|
0
test1.apk
Normal file
0
test1.apk
Normal file
Loading…
Reference in a new issue