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 "-1363USAGE51-1" > 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 "-1363USAGE51-1" > modem_status.xml cat modem_status.xml