python: Build a working crypt module (closes #230)
[termux-packages] / packages / termux-api / termux-download
1 #!/bin/sh
2 set -e -u
3
4 SCRIPTNAME=termux-download
5 show_usage () {
6 echo "Usage: $SCRIPTNAME [OPTIONS] <url-to-download>"
7 echo "Download a resource using the system download manager."
8 echo ""
9 echo " -d <description> description for the download request notification"
10 echo " -t <title> title for the download request notification"
11 exit 0
12 }
13
14 ARG_D=""
15 OPT_D=""
16 ARG_T=""
17 OPT_T=""
18
19 while getopts :hd:t: option
20 do
21 case "$option" in
22 h) show_usage;;
23 d) ARG_D="--es description"; OPT_D="$OPTARG";;
24 t) ARG_T="--es title"; OPT_T="$OPTARG";;
25 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
26 esac
27 done
28 shift $(($OPTIND-1))
29
30 if [ $# -lt 1 ]; then echo "$SCRIPTNAME: no url specified"; exit 1; fi
31 if [ $# -gt 1 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
32
33 URL_TO_DOWNLOAD="$1"
34
35 set --
36 if [ -n "$ARG_D" ]; then set -- "$@" $ARG_D "$OPT_D"; fi
37 if [ -n "$ARG_T" ]; then set -- "$@" $ARG_T "$OPT_T"; fi
38 set -- "$@" $URL_TO_DOWNLOAD
39
40 @TERMUX_API@ Download "$@"