#!/bin/sh
# 
# Author: Peter Keel <seegras@discordia.ch>
# License: Public Domain
# Date: 27.02.2011
# 
# Change this to suit your needs
APKTOOL="./apktool";

if [ $# -lt 1 ]
then
    ARGS='*.apk'
else 
    ARGS=$*
fi
echo Unpacking ${ARGS}
for i in ${ARGS}; do 
${APKTOOL} decode $i `basename $i .apk`;
done

