这是indexloc提供的服务,不要输入任何密码
Skip to content
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
10 changes: 7 additions & 3 deletions scripts/termux-sms-inbox
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,37 @@ set -u

PARAM_LIMIT=10
PARAM_OFFSET=0
PARAM_TYPE=1
PARAMS=""

SCRIPTNAME=termux-sms-inbox
show_usage () {
echo "Usage: termux-sms-inbox [-d] [-l limit] [-n] [-o offset]"
echo "Usage: termux-sms-inbox [-d] [-l limit] [-n] [-o offset] [-t type]"
echo "List received SMS messages."
echo " -d show dates when messages were created"
echo " -l limit offset in sms list (default: $PARAM_LIMIT)"
echo " -n show phone numbers"
echo " -o offset offset in sms list (default: $PARAM_OFFSET)"
echo " -t type the type of messages to return (default: $PARAM_TYPE)"
echo " 0:ALL, 1:INBOX, 2:SENT, 3:DRAFT, 4:OUTBOX "
exit 0
}

while getopts :hdl:no: option
while getopts :hdlt:no: option
do
case "$option" in
h) show_usage;;
d) PARAMS="$PARAMS --ez show-dates true";;
l) PARAM_LIMIT=$OPTARG;;
n) PARAMS="$PARAMS --ez show-phone-numbers true";;
o) PARAM_OFFSET=$OPTARG;;
t) PARAM_TYPE=$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"
PARAMS="$PARAMS --ei offset $PARAM_OFFSET --ei limit $PARAM_LIMIT --ei type $PARAM_TYPE"
/data/data/com.termux/files/usr/libexec/termux-api SmsInbox $PARAMS