<div class="gmail_quote">On Fri, Apr 23, 2010 at 5:35 PM, William Maddler <span dir="ltr">&lt;<a href="mailto:news@maddler.net">news@maddler.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hello all,<br>
I&#39;ve tried googling around but got no luck.<br>
I&#39;d need to get current operator name a SIM card status (registered/not<br>
registered).<br>
<br>
Any clue or starting point? C or Python would be fine.<br></blockquote><div><br>You can get them via dbus. First you get the operator code and country code, then you get the proper string. In shell script:<br><br><span style="font-family: courier new,monospace;">#!/bin/sh</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">opcountry=$(dbus-send --system --print-reply=literal --dest=<a href="http://com.nokia.phone.net">com.nokia.phone.net</a> /com/nokia/phone/net \<br>Phone.Net.get_registration_status | tr &#39;\n&#39; &#39; &#39; | awk &#39;{print $8,$10}&#39;)</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">opcode=$(echo $opcountry | cut -f1 -d&#39; &#39;)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">countrycode=$(echo $opcountry | cut -f2 -d&#39; &#39;)</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">dbus-send --system --print-reply --dest=<a href="http://com.nokia.phone.net">com.nokia.phone.net</a> /com/nokia/phone/net \<br>Phone.Net.get_operator_name byte:0 uint32:$opcode uint32:$countrycode | grep string \<br>

| awk &#39;{print $2}&#39; | tr -d \&quot;</span><br style="font-family: courier new,monospace;"><br></div></div>-- <br>Cláudio &quot;Patola&quot; Sampaio<br>IRC: ptl  - Yahoo: patolaaa<br>Campinas, SP - Brazil.<br>