Update SDK build tools to 24.0.1
[termux-packages] / packages / termux-api / termux-contact-list
CommitLineData
cc1ae02e 1#!/bin/sh
59f0d218
FF
2set -e -u
3
bea93fbd
FF
4SCRIPTNAME=termux-contact-list
5show_usage () {
6 echo "Usage: $SCRIPTNAME"
7 echo "List all contacts."
8 echo ""
9 exit 0
10}
11
12while getopts :h option
13do
14 case "$option" in
15 h) show_usage;;
16 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
17 esac
18done
19shift $(($OPTIND-1))
20
21if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
59f0d218 22
cc1ae02e 23@TERMUX_API@ ContactList