21 lines
166 B
Bash
Executable file
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!!!"
|
|
|