Thanks for your help so far on this, I received further clarification as<br>
to what I need to do and I think it requires a little tweaking. For the<br>
ones that are &quot;state:reachable&quot; I don&#39;t need any value returned, or<br>
maybe a simple echo statement that says &quot;reachable&quot; or a numeric value<br>
of &quot;-1&quot;. I can change it if necessary.. For the ones that are in<br>
&quot;state:unreachable&quot;. I need a count of how many return like that. Say<br>
5,6,7, or so on.  So the output I am interested in is:<br>
<br>
-1 (good)<br>
<br>
or<br>
<br>
5 (bad)<br>
<br>
This is the script so far that I have. For a reference point.<br>
<br>
#!/bin/sh<br>
<br>
export JAVA_HOME=/hosting/products/<div id=":88">WebSphereU01/java<br>
<br>
#sets the environment in java<br>
<br>
#the values -p -bp and -ch will need to be altered according to what<br>
needs to be run.<br>
<br>
/hosting/ogsa/ogsa-6.1.0.5/ObjectGrid/bin/xsadmin.sh -p 26572 -bp 26570<br>
-ch nc3sz2ecmus02 -routetable | sed -e &#39;s/.*state:reachable.*/&gt;0/&#39; e<br>
&#39;s/.*state:unreachable.*/&lt;0/&#39; &gt; `date &quot;+%y%m%d%H%M%S&quot;`.txt<br>
<br>
This is the output it produces in its current form.<br>
<br>
&gt;0<br>
<br>
&gt;0<br>
<br>
&gt;0<br>
<br>
And so forth.</div><br><br><div class="gmail_quote">On Thu, Aug 11, 2011 at 9:54 PM, Scott Steele <span dir="ltr">&lt;<a href="mailto:roninazure@gmail.com">roninazure@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I&#39;ve been trying to test this script on my server at work, but unfortunately VPN has been flaking on me tonight:-( <br><br><div class="gmail_quote"><div><div></div><div class="h5">On Thu, Aug 11, 2011 at 8:35 PM, Jim Kinney <span dir="ltr">&lt;<a href="mailto:jim.kinney@gmail.com" target="_blank">jim.kinney@gmail.com</a>&gt;</span> wrote:<br>

</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div><div class="h5"><p>Oops. Change  .\* to. \+</p>
<div class="gmail_quote"><div>On Aug 11, 2011 8:01 PM, &quot;David Tomaschik&quot; &lt;<a href="mailto:david@systemoverlord.com" target="_blank">david@systemoverlord.com</a>&gt; wrote:<br type="attribution">&gt; On 08/11/2011 07:51 PM, Scott Steele wrote:<br>


&gt;&gt; I haven&#39;t been able to try this code yet since I cannot connect to the<br>&gt;&gt; server, but would it return with just &quot;1&quot; value after if finishes with<br>&gt;&gt; a script? say 1 or -1? That would be what I would be looking for<br>


&gt;&gt; SiteScope to understand.<br>&gt;&gt;<br>&gt;&gt; On Thu, Aug 11, 2011 at 6:22 PM, Jim Kinney &lt;<a href="mailto:jim.kinney@gmail.com" target="_blank">jim.kinney@gmail.com</a><br></div><div>&gt;&gt; &lt;mailto:<a href="mailto:jim.kinney@gmail.com" target="_blank">jim.kinney@gmail.com</a>&gt;&gt; wrote:<br>


&gt;&gt;<br>&gt;&gt;     | sed -e &#39;s/statereachable.\*/1/&#39; -e &#39;s/stateunreachable.\*/-1/&#39;<br>&gt;&gt;<br>&gt;&gt;     On Aug 11, 2011 6:16 PM, &quot;Scott Steele&quot; &lt;<a href="mailto:roninazure@gmail.com" target="_blank">roninazure@gmail.com</a><br>

</div><div><div></div><div>
&gt;&gt;     &lt;mailto:<a href="mailto:roninazure@gmail.com" target="_blank">roninazure@gmail.com</a>&gt;&gt; wrote:<br>&gt;&gt;     &gt; I am relatively a little rusty with the shell scripting and was<br>&gt;&gt;     wondering if<br>

&gt;&gt;     &gt; someone could help me with my dilemma. I use IBM WebSphere and<br>
&gt;&gt;     the command I<br>&gt;&gt;     &gt; use is:<br>&gt;&gt;     &gt;<br>&gt;&gt;     &gt; xsadmin.sh -p 11111 -bp 11111 -ch servername123 -routetable<br>&gt;&gt;     &gt;<br>&gt;&gt;     &gt; The output is an example of this:<br>


&gt;&gt;     &gt;<br>&gt;&gt;     &gt; P: partition:83 - state:reachable - ipaddress:servername100 -<br>&gt;&gt;     zone:ZoneB<br>&gt;&gt;     &gt;&gt; R: partition:83 - state:reachable - ipaddress:servername101-<br>&gt;&gt;     zone:ZoneA<br>


&gt;&gt;     &gt; P: partition:84 - state:reachable - ipaddress:servername102 -<br>&gt;&gt;     zone:ZoneB<br>&gt;&gt;     &gt;&gt; R: partition:84 - state:reachable - ipaddress:servername103 -<br>&gt;&gt;     zone:ZoneA<br>


&gt;&gt;     &gt; P: partition:85 - state:reachable - ipaddress:servername104 -<br>&gt;&gt;     zone:ZoneA<br>&gt;&gt;     &gt;&gt; R: partition:85 - state:reachable - ipaddress:servername105 -<br>&gt;&gt;     zone:ZoneB<br>


&gt;&gt;     &gt;<br>&gt;&gt;     &gt; And so on.<br>&gt;&gt;     &gt;<br>&gt;&gt;     &gt; I need to condense the output of this file to send to SiteScope<br>&gt;&gt;     as a file<br>&gt;&gt;     &gt; with only values of either &lt;0 or &gt;0. Meaning, if the<br>


&gt;&gt;     state:reachable it<br>&gt;&gt;     &gt; needs to appear as &gt;0. if state:unreachable than the value needs<br>&gt;&gt;     to appear<br>&gt;&gt;     &gt; as &lt;0. I basically need to find a way to remove all erroneous<br>


&gt;&gt;     info and<br>&gt;&gt;     &gt; substitute the words state:reachable or state:unreachable with<br>&gt;&gt;     either &lt;0 or<br>&gt;&gt;     &gt;&gt;0. I have tried many different methods, awk, sed and grep but<br>


&gt;&gt;     seem to come<br>&gt;&gt;     &gt; up short. Any help would be most appreciative and would be a<br>&gt;&gt;     great learning<br>&gt;&gt;     &gt; tool.<br>&gt;&gt;     &gt;<br>&gt;&gt;     &gt; Thanks!<br>&gt;&gt;<br>


&gt; <br>&gt; Are you looking for return value or output?  For output, Jim&#39;s sed<br>&gt; commands should work, but you might need a &quot;.*&quot; at the beginning of each<br>&gt; pattern.<br>&gt; <br>&gt; Providing sample output with the sample input would probably help<br>


&gt; everyone understand.<br>&gt; <br>&gt; David<br></div></div></div>
<br></div></div><div class="im">_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
<br></div></blockquote></div><br>
</blockquote></div><br>