This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Script to download an apk from goole play store | |
# APkPure.com is used as actual download mirror | |
# You have to provide app name and app package name | |
# download.sh app-name app-package-name | |
if [ -z "$1" ] || [ -z "$2" ] | |
then | |
echo -e "Usage ./download.sh app-name app-package-name" | |
exit 1 |