Merge pull request #17 from dkramer95/CallLogAPI

Add CallLogAPI script
This commit is contained in:
Fredrik Fornwall 2018-06-06 00:20:49 +02:00 committed by GitHub
commit 7f47901d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
scripts/termux-call-log Executable file
View File

@ -0,0 +1,32 @@
#!/data/data/com.termux/files/usr/bin/bash
set -u
PARAM_LIMIT=10
PARAM_OFFSET=0
PARAMS=""
SCRIPTNAME=termux-call-log
show_usage () {
echo "Usage: $SCRIPTNAME [-d] [-l limit] [-o offset]"
echo "List call log history"
echo " -l limit offset in call log list (default: $PARAM_LIMIT)"
echo " -o offset offset in call log list (default: $PARAM_OFFSET)"
exit 0
}
while getopts :hl:o: option
do
case "$option" in
h) show_usage;;
l) PARAM_LIMIT=$OPTARG;;
o) PARAM_OFFSET=$OPTARG;;
?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
esac
done
shift $(($OPTIND-1))
if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
PARAMS="$PARAMS --ei offset $PARAM_OFFSET --ei limit $PARAM_LIMIT"
/data/data/com.termux/files/usr/libexec/termux-api CallLog $PARAMS