shell-scripte-code/android-app-installer.sh
2017-10-11 02:28:44 +02:00

21 lines
162 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!!!"