<?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/"
	>

<channel>
	<title>Noynim IT Solutions of Denver, Colorado &#187; Scripts</title>
	<atom:link href="http://www.noynim.com/category/technology-articles/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noynim.com</link>
	<description>Denver Computer Support</description>
	<lastBuildDate>Mon, 26 Dec 2011 22:31:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Php Script to Append String Into Text File</title>
		<link>http://www.noynim.com/2008/05/21/php-script-to-append-string-into-text-file/</link>
		<comments>http://www.noynim.com/2008/05/21/php-script-to-append-string-into-text-file/#comments</comments>
		<pubDate>Wed, 21 May 2008 05:25:57 +0000</pubDate>
		<dc:creator>Noynim IT Solutions</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.noynim.com/dev/?p=41</guid>
		<description><![CDATA[Use a simple PHP script to append string into text file:]]></description>
			<content:encoded><![CDATA[<p>Use a simple PHP script to append string into text file:</p>
<p>&lt;?php<br />
$fn = “file.txt”;<br />
$file = fopen($fn, “a+”);<br />
$size = filesize($fn);<br />
$space.= “\n”;<br />
if($_POST['addition']) fwrite($file, $_POST['addition']);</p>
<p>$text = fread($file, $size);<br />
fwrite ($file, $space);<br />
fclose($file);<br />
?&gt;<br />
&lt;form action=”&lt;?=$PHP_SELF?&gt;” method=”post”&gt;<br />
&lt;input type=”text” name=”addition”/&gt;&lt;br/&gt;<br />
&lt;input type=”submit”/&gt;<br />
&lt;/form&gt;</p>
<p>The file is the text file that you will add to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noynim.com/2008/05/21/php-script-to-append-string-into-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query Multiple IPs in DNS</title>
		<link>http://www.noynim.com/2008/04/28/query-multiple-ips-in-dns/</link>
		<comments>http://www.noynim.com/2008/04/28/query-multiple-ips-in-dns/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 05:29:59 +0000</pubDate>
		<dc:creator>Noynim IT Solutions</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.noynim.com/dev/?p=47</guid>
		<description><![CDATA[Here is a simple bash script to query multiple IPs and get the DNS names:]]></description>
			<content:encoded><![CDATA[<p>Here is a simple bash script to query multiple IPs and get the DNS names:</p>
<p>for a in $(cat input.txt); do nslookup $a ; done</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noynim.com/2008/04/28/query-multiple-ips-in-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expect Script for Cisco Devices</title>
		<link>http://www.noynim.com/2008/04/28/expect-script-for-cisco-devices/</link>
		<comments>http://www.noynim.com/2008/04/28/expect-script-for-cisco-devices/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 05:29:50 +0000</pubDate>
		<dc:creator>Noynim IT Solutions</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.noynim.com/dev/?p=45</guid>
		<description><![CDATA[Expect script for Cisco devices.]]></description>
			<content:encoded><![CDATA[<p>#!/usr/bin/expect<br />
spawn ssh user@192.168.0.1<br />
expect “user@192.168.0.1’s password:”<br />
send “passwd\r”<br />
expect “&gt;”<br />
send “en\r”<br />
expect “Password:”<br />
send “passwd\r”<br />
expect “#”<br />
send “conf t\r”<br />
expect “#(config)”<br />
send “wr m\r”<br />
expect “#(config)”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noynim.com/2008/04/28/expect-script-for-cisco-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spacing Issues in Bash</title>
		<link>http://www.noynim.com/2008/03/19/spacing-issues-bash/</link>
		<comments>http://www.noynim.com/2008/03/19/spacing-issues-bash/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 05:28:41 +0000</pubDate>
		<dc:creator>Noynim IT Solutions</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.noynim.com/dev/?p=43</guid>
		<description><![CDATA[If you are having whitespace issues in bash, review the information provided here]]></description>
			<content:encoded><![CDATA[<p>If you are having whitespace issues in bash, review the information provided here: <a href="http://www.unix.com/shell-programming-scripting/42839-preventing-whitespace-delimiter-loop-bash-sh.html" target="_blank">http://www.unix.com/shell-programming-scripting/42839-preventing-whitespace-delimiter-loop-bash-sh.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.noynim.com/2008/03/19/spacing-issues-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

