From 56df129e9de9022c2aa01717a784d94e1374115e Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Mon, 22 Mar 2021 23:11:46 +0300 Subject: code refactoring --- e3372-sendsms.sh | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'e3372-sendsms.sh') diff --git a/e3372-sendsms.sh b/e3372-sendsms.sh index a60d946..fb13258 100755 --- a/e3372-sendsms.sh +++ b/e3372-sendsms.sh @@ -1,17 +1,14 @@ #!/bin/bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" . "$DIR/config.sh" -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` +get_token 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 + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "-1363USAGE51-1" >modem_status.xml +cat modem_status.xml \ No newline at end of file -- cgit v1.2.3