1
2
3
4
5
6
7
8
9
10 | CLICK_PACKAGE=$1 if [ -z $CLICK_PACKAGE ] then echo provide click package name as argument exit 0; fi adb push $CLICK_PACKAGE /tmp adb shell pkcon install-local /tmp/$CLICK_PACKAGE --allow-untrusted adb shell rm /tmp/$CLICK_PACKAGE |