<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for </title>
	<atom:link href="http://trizsolo.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://trizsolo.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Sep 2009 09:01:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Monitor processes in Linux using Perl script by PAR</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/#comment-91</link>
		<dc:creator>PAR</dc:creator>
		<pubDate>Tue, 08 Sep 2009 09:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=42#comment-91</guid>
		<description>Wordpress seems to have removed the important part. But you need to add PS enclosed in pointy brackets between the curly brackets in the while. Hope that make sense.</description>
		<content:encoded><![CDATA[<p>WordPress seems to have removed the important part. But you need to add PS enclosed in pointy brackets between the curly brackets in the while. Hope that make sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monitor processes in Linux using Perl script by PAR</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/#comment-90</link>
		<dc:creator>PAR</dc:creator>
		<pubDate>Tue, 08 Sep 2009 08:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=42#comment-90</guid>
		<description>I needed to update update the line as

while()

To make it work.

Very useful script, Thanks.</description>
		<content:encoded><![CDATA[<p>I needed to update update the line as</p>
<p>while()</p>
<p>To make it work.</p>
<p>Very useful script, Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nagios Perl Script to add Hosts and Escalations by Todd</title>
		<link>http://trizsolo.wordpress.com/2008/10/24/nagios-perl-script-to-add-hosts-and-escalations/#comment-89</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Fri, 04 Sep 2009 16:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=50#comment-89</guid>
		<description>First line should have been.....

while($line = ){

my bad.</description>
		<content:encoded><![CDATA[<p>First line should have been&#8230;..</p>
<p>while($line = ){</p>
<p>my bad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nagios Perl Script to add Hosts and Escalations by Todd</title>
		<link>http://trizsolo.wordpress.com/2008/10/24/nagios-perl-script-to-add-hosts-and-escalations/#comment-88</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Fri, 04 Sep 2009 16:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=50#comment-88</guid>
		<description>This script was extremely helpful.  I did find, however, that there were a few things missing.  I wanted to make you aware and have listed only the updated lines below.  I used the variable $line.

while($line = ){
($field1, $field2, $field3, $field4, $field5, $field6)=split(&quot;\t&quot; , $line);

Thanks again for making this script available.

T.</description>
		<content:encoded><![CDATA[<p>This script was extremely helpful.  I did find, however, that there were a few things missing.  I wanted to make you aware and have listed only the updated lines below.  I used the variable $line.</p>
<p>while($line = ){<br />
($field1, $field2, $field3, $field4, $field5, $field6)=split(&#8220;\t&#8221; , $line);</p>
<p>Thanks again for making this script available.</p>
<p>T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple host ping sweep Perl script by triz</title>
		<link>http://trizsolo.wordpress.com/2008/04/14/multiple-host-ping-sweep-perl-script/#comment-87</link>
		<dc:creator>triz</dc:creator>
		<pubDate>Thu, 27 Aug 2009 15:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=38#comment-87</guid>
		<description>Sorry for such a delayed response.  I&#039;ve been swamped meeting audit requirements for new policies/standards being pushed out... Let me have a little time ... to find time to look into this properly.</description>
		<content:encoded><![CDATA[<p>Sorry for such a delayed response.  I&#8217;ve been swamped meeting audit requirements for new policies/standards being pushed out&#8230; Let me have a little time &#8230; to find time to look into this properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple host ping sweep Perl script by Isaac Michael</title>
		<link>http://trizsolo.wordpress.com/2008/04/14/multiple-host-ping-sweep-perl-script/#comment-86</link>
		<dc:creator>Isaac Michael</dc:creator>
		<pubDate>Mon, 10 Aug 2009 16:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=38#comment-86</guid>
		<description>Hello there, great script .
I have couple of questions,
- Have you made the change and combined both scripts in a single perl script?

I created the host.txt file including 2 ip addresses (for testing) 
10.0.0.1
10.0.0.2

- in attempt to run the shell script the script seem to be hung...or in a loop of some sort,...

------------------------------------------------------------------
$ ./ping.sh
#!/bin/bash -xv
#
#startPing.sh
#This script starts the ping.pl perl script to read multiple ping
#destinations from hosts.txt
#written by trizsolo
#~~~~~~~~~~~~~~~~
for i in `cat hosts.txt`
do
./ping.pl $i
done
cat hosts.txt
++ cat hosts.txt
+ for i in &#039;`cat hosts.txt`&#039;
+ ./ping.pl 10.0.0.1
-------------------------------------------------------------------

What am i doing wrong ?
I have the same script in the same location 
- ping.pl
- ping.sh
-hosts.txt


Please advise,
Respectfully,</description>
		<content:encoded><![CDATA[<p>Hello there, great script .<br />
I have couple of questions,<br />
- Have you made the change and combined both scripts in a single perl script?</p>
<p>I created the host.txt file including 2 ip addresses (for testing)<br />
10.0.0.1<br />
10.0.0.2</p>
<p>- in attempt to run the shell script the script seem to be hung&#8230;or in a loop of some sort,&#8230;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
$ ./ping.sh<br />
#!/bin/bash -xv<br />
#<br />
#startPing.sh<br />
#This script starts the ping.pl perl script to read multiple ping<br />
#destinations from hosts.txt<br />
#written by trizsolo<br />
#~~~~~~~~~~~~~~~~<br />
for i in `cat hosts.txt`<br />
do<br />
./ping.pl $i<br />
done<br />
cat hosts.txt<br />
++ cat hosts.txt<br />
+ for i in &#8216;`cat hosts.txt`&#8217;<br />
+ ./ping.pl 10.0.0.1<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>What am i doing wrong ?<br />
I have the same script in the same location<br />
- ping.pl<br />
- ping.sh<br />
-hosts.txt</p>
<p>Please advise,<br />
Respectfully,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monitor processes in Linux using Perl script by Bhavesh</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/#comment-85</link>
		<dc:creator>Bhavesh</dc:creator>
		<pubDate>Thu, 21 May 2009 14:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=42#comment-85</guid>
		<description>Instead of this 
”
while(
) {

”
 use 

&quot;
while() {

&quot;

then it will work properly.</description>
		<content:encoded><![CDATA[<p>Instead of this<br />
”<br />
while(<br />
) {</p>
<p>”<br />
 use </p>
<p>&#8221;<br />
while() {</p>
<p>&#8221;</p>
<p>then it will work properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple host ping sweep Perl script by triz</title>
		<link>http://trizsolo.wordpress.com/2008/04/14/multiple-host-ping-sweep-perl-script/#comment-84</link>
		<dc:creator>triz</dc:creator>
		<pubDate>Wed, 13 May 2009 18:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=38#comment-84</guid>
		<description>I would set up a crontab job to run how ever often you want and direct the output to a log location.  

It is also easy to add some lines of code that will email output that you specify from the script.  I will try to update this script in near future as I have already made some enhancements to the original script.</description>
		<content:encoded><![CDATA[<p>I would set up a crontab job to run how ever often you want and direct the output to a log location.  </p>
<p>It is also easy to add some lines of code that will email output that you specify from the script.  I will try to update this script in near future as I have already made some enhancements to the original script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple host ping sweep Perl script by triz</title>
		<link>http://trizsolo.wordpress.com/2008/04/14/multiple-host-ping-sweep-perl-script/#comment-83</link>
		<dc:creator>triz</dc:creator>
		<pubDate>Wed, 13 May 2009 18:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=38#comment-83</guid>
		<description>Hi Ravi, yes I do use two scripts to run this... basically the shell script just kicks off the other script and makes it loop.  I could convert the shell script into a perl script and I&#039;m sure it wouldn&#039;t be too difficult to combine both scripts into one.</description>
		<content:encoded><![CDATA[<p>Hi Ravi, yes I do use two scripts to run this&#8230; basically the shell script just kicks off the other script and makes it loop.  I could convert the shell script into a perl script and I&#8217;m sure it wouldn&#8217;t be too difficult to combine both scripts into one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple host ping sweep Perl script by ravi</title>
		<link>http://trizsolo.wordpress.com/2008/04/14/multiple-host-ping-sweep-perl-script/#comment-82</link>
		<dc:creator>ravi</dc:creator>
		<pubDate>Wed, 15 Apr 2009 01:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=38#comment-82</guid>
		<description>my requirement is by using the perl language periodically query hosts in my domain and send an e-mail report if the host is down ? can u help me out in this issue ? andi have to log the information ... thank you in advance .</description>
		<content:encoded><![CDATA[<p>my requirement is by using the perl language periodically query hosts in my domain and send an e-mail report if the host is down ? can u help me out in this issue ? andi have to log the information &#8230; thank you in advance .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
