4 SCRIPTNAME=termux-download
6 echo "Usage: $SCRIPTNAME [-d description] [-t title] url-to-download"
7 echo "Download a resource using the system download manager."
8 echo " -d description description for the download request notification"
9 echo " -t title title for the download request notification"
18 while getopts :hd:t: option
22 d) ARG_D="--es description"; OPT_D="$OPTARG";;
23 t) ARG_T="--es title"; OPT_T="$OPTARG";;
24 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
29 if [ $# -lt 1 ]; then echo "$SCRIPTNAME: no url specified"; exit 1; fi
30 if [ $# -gt 1 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
35 if [ -n "$ARG_D" ]; then set -- "$@" $ARG_D "$OPT_D"; fi
36 if [ -n "$ARG_T" ]; then set -- "$@" $ARG_T "$OPT_T"; fi
37 set -- "$@" $URL_TO_DOWNLOAD
39 @TERMUX_API@ Download "$@"