diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:00:14 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:00:14 +0300 |
commit | 7491c24ff24688cb13067289d817fd7e9adb0610 (patch) | |
tree | 86de0deabea579215174df790e3f8ed89e271916 | |
parent | 4bd37fbae32e6742e3de51b88b242dd09749187b (diff) |
e3372-sendsms: code style
-rwxr-xr-x | e3372-sendsms.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/e3372-sendsms.sh b/e3372-sendsms.sh index ab1fbef..a60d946 100755 --- a/e3372-sendsms.sh +++ b/e3372-sendsms.sh @@ -7,7 +7,11 @@ curl -s -X GET "http://$MODEM_IP/api/webserver/SesTokInfo" > ses_tok.xml COOKIE=`grep "SessionID=" ses_tok.xml | cut -b 10-147` TOKEN=`grep "TokInfo" ses_tok.xml | cut -b 10-41` -curl -s -X POST "http://$MODEM_IP/api/sms/send-sms" -H "Cookie: $COOKIE" -H "__RequestVerificationToken: $TOKEN" -H "Content-Type: text/xml" -d "<?xml version='1.0' encoding='UTF-8'?><request><Index>-1</Index><Phones><Phone>363</Phone></Phones><Sca></Sca><Content>USAGE</Content><Length>5</Length><Reserved>1</Reserved><Date>-1</Date></request>" > modem_status.xml +curl -s -X POST "http://$MODEM_IP/api/sms/send-sms" \ + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "<?xml version='1.0' encoding='UTF-8'?><request><Index>-1</Index><Phones><Phone>363</Phone></Phones><Sca></Sca><Content>USAGE</Content><Length>5</Length><Reserved>1</Reserved><Date>-1</Date></request>" > modem_status.xml cat modem_status.xml |