라벨이 Bash Script인 게시물 표시

[Citrix][XenMobile] How to Wrap Android Apps using the MDX Toolkit and through the command line(+ bash script)

How to Wrap Android Apps using the MDX Toolkit and through the command line(+ bash script) http://www.youtube.com/watch?v=XZwdLbAmX7c <bash script> echo "*********************" echo "*** Wrapping Apps ***" echo "*********************" KEYSTORE=~/Desktop/phil.keystore ALIAS=phil.keystore STOREPASS=password SIGALG=SHA1withDSA KEYALG=DSA APKDIR=/Users/Administrator/Desktop/apps APKS=`ls -r $APKDIR/*.apk` {     rm -rf Apps/Regular && mkdir -p Apps/Regular     #cd ManagedAppUtility/dist     if [ ! -f $KEYSTORE ] ; then         # create a private/public key         keytool -genkey \             -dname "cn=Android Debug, o=Android, c=US" \             -keystore $KEYSTORE \             -keypass $STOREPASS \    ...