aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-03-22 23:01:27 +0300
committerEvgeny Zinoviev <me@ch1p.io>2021-03-22 23:01:27 +0300
commitf1a9f0d4c21337444b423f7a9fd23b26a92857c5 (patch)
treef3cb5c4d78ec0223ee43f4265135cb8fa1be9bcb
parentf1b81898ef75bb8a6df927bb9167ccdf28366e7f (diff)
e3372: code style
-rwxr-xr-xe3372.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/e3372.sh b/e3372.sh
index 5837075..8f298e9 100755
--- a/e3372.sh
+++ b/e3372.sh
@@ -7,12 +7,17 @@ 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 GET "http://$MODEM_IP/api/device/information" -H "Cookie: $COOKIE" -H "__RequestVerificationToken: $TOKEN" -H "Content-Type: text/xml" > modem_status.xml
+curl -s -X GET "http://$MODEM_IP/api/device/information" \
+ -H "Cookie: $COOKIE" \
+ -H "__RequestVerificationToken: $TOKEN" \
+ -H "Content-Type: text/xml" > modem_status.xml
-curl -s -X GET "http://$MODEM_IP/api/device/signal" -H "Cookie: $COOKIE" -H "__RequestVerificationToken: $TOKEN" -H "Content-Type: text/xml" >> modem_status.xml
+curl -s -X GET "http://$MODEM_IP/api/device/signal" \
+ -H "Cookie: $COOKIE" \
+ -H "__RequestVerificationToken: $TOKEN" \
+ -H "Content-Type: text/xml" >> modem_status.xml
wmode=$(cat modem_status.xml | grep workmode | sed -e 's/<[^>]*>//g')
-
rssi=$(cat modem_status.xml | grep rssi | sed -e 's/<[^>]*>//g')
echo "mode: $wmode"