shell-scripte-code/android-app-installer.sh
simono41 1a30985a28 fix
2017-10-11 02:39:23 +02:00

21 lines
166 B
Bash
Executable file

#!/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!!!"