X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/59f0d218a6ff34c80cf898f6d7ac62555ba8eb11..c2c270c5db6879060d26f9e672e1045ded5d0ba3:/packages/termux-api/termux-contact-list diff --git a/packages/termux-api/termux-contact-list b/packages/termux-api/termux-contact-list index 6773a0d8..a1d979b4 100755 --- a/packages/termux-api/termux-contact-list +++ b/packages/termux-api/termux-contact-list @@ -1,10 +1,23 @@ -#!/system/bin/sh +#!/bin/sh set -e -u -if [ "$#" != "0" ]; then - echo "usage: termux-contact-list" - echo "List all contacts." - exit 1 -fi +SCRIPTNAME=termux-contact-list +show_usage () { + echo "Usage: $SCRIPTNAME" + echo "List all contacts." + echo "" + exit 0 +} -termux-api ContactList +while getopts :h option +do + case "$option" in + h) show_usage;; + ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1; + esac +done +shift $(($OPTIND-1)) + +if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi + +@TERMUX_API@ ContactList