Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CallLogAPI script #17

Merged
merged 1 commit into from
Jun 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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