diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:25:34 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:25:39 +0300 |
commit | 91b6b387e19ad2b2f686e8a27bfc0a027e9eb4d9 (patch) | |
tree | 2be275e79d58e8f8f69166086c11ca3cbe1d9ed3 /e3372-readsms.sh | |
parent | c8fb7cd3987d3128bcee5962a5af4cd282add24e (diff) |
eliminate a lot of copypasta by using functions
Diffstat (limited to 'e3372-readsms.sh')
-rwxr-xr-x | e3372-readsms.sh | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/e3372-readsms.sh b/e3372-readsms.sh index c265dfa..cf54c5f 100755 --- a/e3372-readsms.sh +++ b/e3372-readsms.sh @@ -4,15 +4,10 @@ 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>" -curl -s -X POST "http://$MODEM_IP/api/sms/sms-list" \ - -H "Cookie: $COOKIE" \ - -H "__RequestVerificationToken: $TOKEN" \ - -H "Content-Type: text/xml" \ - -d "<request><PageIndex>1</PageIndex><ReadCount>10</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>" >modem_status.xml +#cat $STATUS_FILE -#cat modem_status.xml - -message=$(grep -r -E 'Phone|Content' modem_status.xml | sed -e 's/<[^>]*>//g' | sed -e 's/^[ \t]*/------\n/g') +message=$(grep -r -E 'Phone|Content' $STATUS_FILE | sed -e 's/<[^>]*>//g' | sed -e 's/^[ \t]*/------\n/g') echo "$message\n------" |