aboutsummaryrefslogtreecommitdiff
path: root/e3372-readsms.sh
blob: cf54c5fbdc1e9b1ffc52ed7cbc0eeae8978047ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
. "$DIR/include.sh"

get_token
post_xml "sms/sms-list" "<request><PageIndex>1</PageIndex><ReadCount>10</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>"

#cat $STATUS_FILE

message=$(grep -r -E 'Phone|Content' $STATUS_FILE | sed -e 's/<[^>]*>//g' | sed -e 's/^[ \t]*/------\n/g')

echo "$message\n------"