shell-scripte-code/android-app-installer.sh

22 lines
166 B
Bash
Raw Normal View History

2017-10-11 02:28:44 +02:00
#!/system/xbin/bash
finds=$(find $1*.apk)
set -x
i=0
2017-10-11 02:39:23 +02:00
for wort in "$finds"
2017-10-11 02:28:44 +02:00
do
echo "Installiere $wort"
2017-10-11 02:39:23 +02:00
pm install "$wort"
2017-10-11 02:28:44 +02:00
shift
done
sync
echo "Fertig!!!"