我有这个数据
&mac=1E-30-6C-A2-47-5F&ip=172.16.1.127&msk=255.255.255.0&gw=172.16.1.1&pdns=0.0.0.0&sdns=0.0.0.0&Speed=0&PortNo=10001&PerMatFram=0&ComPort=0
我想提取数据字符串并将其存储在使用 sed commond 之类的变量中
ip=172.16.1.127
mac=xyz
如何将 sed 与上述字符串一起使用?
我试过这样使用
IP=`echo "$QUERY_STRING" | sed -n '/&ip=/,/&)/g'
但它没有提供任何数据。