Skip to content

Commit

Permalink
Merge pull request #17 from dkramer95/CallLogAPI
Browse files Browse the repository at this point in the history
Add CallLogAPI script
  • Loading branch information
fornwall authored Jun 5, 2018
2 parents 9c97dc9 + 502737c commit 7f47901
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions scripts/termux-call-log
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7f47901

Please sign in to comment.