<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title></title>
	<atom:link href="http://trizsolo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://trizsolo.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 03 Nov 2009 18:28:52 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='trizsolo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/30cca70639505c37a0a9d3753a2d58c2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title></title>
		<link>http://trizsolo.wordpress.com</link>
	</image>
			<item>
		<title>Perl Tricks</title>
		<link>http://trizsolo.wordpress.com/2009/11/03/perl-tricks/</link>
		<comments>http://trizsolo.wordpress.com/2009/11/03/perl-tricks/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 18:27:26 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[one-liner]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=57</guid>
		<description><![CDATA[In my environment there are some commands I need to run as &#8220;true root&#8221;, which means I have to login to the server as root&#8230; no su or sesu.  We have all of our Unix/Linux servers locked down for root access via SSH, so every now and then I need to open root temporarily [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=57&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2009/11/03/perl-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Check Mount Points with Perl Script New</title>
		<link>http://trizsolo.wordpress.com/2009/03/24/check-mount-points-with-perl-script-new/</link>
		<comments>http://trizsolo.wordpress.com/2009/03/24/check-mount-points-with-perl-script-new/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 21:14:38 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=54</guid>
		<description><![CDATA[I wanted to make a more flexible mount point script to use since our environment consists of several different architects with different mount points.  This works good by reading the fstab file and mounting accordingly.  I just need a flexible way to omit the common mount points like / and /opt&#8230; 
#!/usr/bin/perl -w
#
# [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=54&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2009/03/24/check-mount-points-with-perl-script-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Nagios Perl Script to add Hosts and Escalations</title>
		<link>http://trizsolo.wordpress.com/2008/10/24/nagios-perl-script-to-add-hosts-and-escalations/</link>
		<comments>http://trizsolo.wordpress.com/2008/10/24/nagios-perl-script-to-add-hosts-and-escalations/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 21:33:37 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network Security]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[nagios perl hosts linux monitor]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=50</guid>
		<description><![CDATA[A couple of perl scripts to help add Hosts and Host Escalations into Nagios config files. 
DIRECTIONS: Edit .list file for script to read
FOR: addHost.pl edit host.list to include tab seperated parameter (5)options
use     host_name       alias   address host_groups
FOR: addEscalation.pl edit Escalation.list to include tab seperated parameter (2)options
host_name       contact_groups
Here is addHost.pl script

#!/usr/bin/perl
#
#
# Usage: Perl script to add hosts [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=50&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/10/24/nagios-perl-script-to-add-hosts-and-escalations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Native Windows Command</title>
		<link>http://trizsolo.wordpress.com/2008/08/26/native-windows-command/</link>
		<comments>http://trizsolo.wordpress.com/2008/08/26/native-windows-command/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 13:00:40 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[CMD command windows]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=47</guid>
		<description><![CDATA[
Some of you may already know about this native windows command, but I didn’t…  so here it is if anyone is interested
 forfiles -pc:\act -m*.zip -d-7 -c&#8221;CMD /C del @FILE&#8221;
 The above command will delete zip files from “c:\act” that are older then 7 days.  This would be beneficial when having to delete files that are automatically [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=47&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/08/26/native-windows-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Busted 6000 hits today&#8230;</title>
		<link>http://trizsolo.wordpress.com/2008/06/26/busted-6000-hits-today/</link>
		<comments>http://trizsolo.wordpress.com/2008/06/26/busted-6000-hits-today/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 17:50:45 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Site Info]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hits uptime]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=46</guid>
		<description><![CDATA[/me pats self on back&#8230;..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=46&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/06/26/busted-6000-hits-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Verify reboot and oracle process with Perl Script</title>
		<link>http://trizsolo.wordpress.com/2008/05/22/verify-reboot-and-oracle-process-with-perl-script/</link>
		<comments>http://trizsolo.wordpress.com/2008/05/22/verify-reboot-and-oracle-process-with-perl-script/#comments</comments>
		<pubDate>Thu, 22 May 2008 22:15:02 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[autosys]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[reboot]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=45</guid>
		<description><![CDATA[Here is a script I wrote that I will run in cron on the days that we have autosys reboot schedules.  The script will check if the server has been rebooted in the last 2 hours and if it&#8217;s rebooted in the last 24 hours.  It also checks to see if Oracle processes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=45&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/05/22/verify-reboot-and-oracle-process-with-perl-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Change ownership of files and directories with Perl script</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/change-ownership-of-files-and-directories-with-perl-script/</link>
		<comments>http://trizsolo.wordpress.com/2008/05/12/change-ownership-of-files-and-directories-with-perl-script/#comments</comments>
		<pubDate>Mon, 12 May 2008 23:09:19 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Perl script chown ownershipt username group]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=44</guid>
		<description><![CDATA[I came across this method of changing the ownership of files when working on a DataStage startup/shutdown script and changing the permissions on the logfiles the script creates.  So I wrote a simple script that takes a username from input and a file name or multiple names from input and changes the owner and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=44&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/05/12/change-ownership-of-files-and-directories-with-perl-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>A Perl script called logHunter.pl</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/a-perl-script-called-loghunterpl/</link>
		<comments>http://trizsolo.wordpress.com/2008/05/12/a-perl-script-called-loghunterpl/#comments</comments>
		<pubDate>Mon, 12 May 2008 22:40:59 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[script perl search log find keyword linux windows]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=43</guid>
		<description><![CDATA[Ok here is a perl script that is pretty much useless in Linux, becuase linux has the grep command, but I&#8217;m a geek so I wrote it anyways.  Hey, it could be usefull in windows&#8230;lol.  So if you haven&#8217;t figured it out yet, this script will look thru a file for keywords and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=43&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/05/12/a-perl-script-called-loghunterpl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Monitor processes in Linux using Perl script</title>
		<link>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/</link>
		<comments>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/#comments</comments>
		<pubDate>Mon, 12 May 2008 21:40:07 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[monitor process script perl linux ps]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=42</guid>
		<description><![CDATA[This is another perl script I wrote to monitor critical processes in Linux and report status to log. This script is alot like the earlier script I wrote to check mount points in that it opens a command and write it to a file in order to use regular expressions to check if something is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=42&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/05/12/monitor-processes-in-linux-using-perl-script/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
		<item>
		<title>Check mount points with Perl script</title>
		<link>http://trizsolo.wordpress.com/2008/05/03/check-mount-points-with-perl-script/</link>
		<comments>http://trizsolo.wordpress.com/2008/05/03/check-mount-points-with-perl-script/#comments</comments>
		<pubDate>Sat, 03 May 2008 12:30:26 +0000</pubDate>
		<dc:creator>triz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl Scripts]]></category>
		<category><![CDATA[Tutorials/Whitepapers]]></category>
		<category><![CDATA[perl script mount point]]></category>

		<guid isPermaLink="false">http://trizsolo.wordpress.com/?p=41</guid>
		<description><![CDATA[Here is my script I wrote to possibly add to the cron job to check and mount&#8230; mount points.
#!/usr/bin/perl -w
#
# Name: chkMounts.pl
#       written by trizsolo
# Usage: ./chkMounts.pl args args args
#you can check as many mount points as needed
#with arguments or use defaults
###################################
my $host=`hostname`;    chomp($host);
my $logfile="$host" . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=trizsolo.wordpress.com&blog=2405507&post=41&subd=trizsolo&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://trizsolo.wordpress.com/2008/05/03/check-mount-points-with-perl-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d7848f8b72efa216ea5c67772c13316d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">triz</media:title>
		</media:content>
	</item>
	</channel>
</rss>