<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Geek Pit</title>
	<link>http://blog.unixlore.net</link>
	<description>Geek tech-tips, news and commentary</description>
	<pubDate>Wed, 19 Nov 2008 23:53:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>

	<item>
		<title>Comment on Using cURL for FTP over SSL file transfers by Doug</title>
		<link>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-321</link>
		<author>Doug</author>
		<pubDate>Thu, 14 Aug 2008 23:47:32 +0000</pubDate>
		<guid>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-321</guid>
		<description>Lots of things can be going on - a firewall can be blocking the FTP traffic, or there can be other network issues. Hard to say without knowing your situation. Can you post your debug output?</description>
		<content:encoded><![CDATA[<p>Lots of things can be going on - a firewall can be blocking the FTP traffic, or there can be other network issues. Hard to say without knowing your situation. Can you post your debug output?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using cURL for FTP over SSL file transfers by Mark</title>
		<link>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-320</link>
		<author>Mark</author>
		<pubDate>Thu, 14 Aug 2008 16:24:59 +0000</pubDate>
		<guid>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-320</guid>
		<description>I tried using the solution you provided, "--disable-epsv --ftp-skip-pasv-ip" as I was getting the "500 'EPSV': command not understood" message and connection timeout. However, I am still getting timeout.

Any other ideas?</description>
		<content:encoded><![CDATA[<p>I tried using the solution you provided, &#8220;&#8211;disable-epsv &#8211;ftp-skip-pasv-ip&#8221; as I was getting the &#8220;500 &#8216;EPSV&#8217;: command not understood&#8221; message and connection timeout. However, I am still getting timeout.</p>
<p>Any other ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perl Script that Does Bulk Reverse-DNS Lookups by WTF Nix</title>
		<link>http://blog.unixlore.net/2006/03/perl-script-that-does-bulk-reverse-dns.html#comment-317</link>
		<author>WTF Nix</author>
		<pubDate>Sun, 13 Jul 2008 20:52:35 +0000</pubDate>
		<guid>http://blog.unixlore.net/2006/03/perl-script-that-does-bulk-reverse-dns.html#comment-317</guid>
		<description>Lovely script, will add it into one of my domains and credits will be given back!</description>
		<content:encoded><![CDATA[<p>Lovely script, will add it into one of my domains and credits will be given back!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using cURL for FTP over SSL file transfers by FB</title>
		<link>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-298</link>
		<author>FB</author>
		<pubDate>Thu, 29 May 2008 18:23:49 +0000</pubDate>
		<guid>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-298</guid>
		<description>I cam upon the page when having the problem. Left.
Searched haxx curl man page, fixed it up then stumbled back here. I should have just read this and tried it first, lol.
Works nicely.</description>
		<content:encoded><![CDATA[<p>I cam upon the page when having the problem. Left.<br />
Searched haxx curl man page, fixed it up then stumbled back here. I should have just read this and tried it first, lol.<br />
Works nicely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shaded Text Boxes in Blogger Templates by Jadu</title>
		<link>http://blog.unixlore.net/2006/03/shaded-text-boxes-in-blogger-templates.html#comment-289</link>
		<author>Jadu</author>
		<pubDate>Fri, 16 May 2008 13:10:22 +0000</pubDate>
		<guid>http://blog.unixlore.net/2006/03/shaded-text-boxes-in-blogger-templates.html#comment-289</guid>
		<description>Nice info, thanks a lot :-) It helped me as I maintain a BASH scripting blog and I have to put codes in my posts. Thanks again.

//Jadu, India
http://unstableme.blogspot.com/</description>
		<content:encoded><![CDATA[<p>Nice info, thanks a lot <img src='http://blog.unixlore.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> It helped me as I maintain a BASH scripting blog and I have to put codes in my posts. Thanks again.</p>
<p>//Jadu, India<br />
<a href="http://unstableme.blogspot.com/" rel="nofollow">http://unstableme.blogspot.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using cURL for FTP over SSL file transfers by Doug</title>
		<link>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-286</link>
		<author>Doug</author>
		<pubDate>Tue, 06 May 2008 14:46:02 +0000</pubDate>
		<guid>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-286</guid>
		<description>Sure, just use standard shell redirects. Curl will output the errors and verbose text to standard error, so just redirect that:

curl -3 -v ... 2&gt; errors.txt (to save the error/verbose output in the file errors.txt)
or 
curl -3 -v ... &gt; output.txt 2&gt;&#038;1 (to save both non-error and error/verbose output to the file output.txt)</description>
		<content:encoded><![CDATA[<p>Sure, just use standard shell redirects. Curl will output the errors and verbose text to standard error, so just redirect that:</p>
<p>curl -3 -v &#8230; 2> errors.txt (to save the error/verbose output in the file errors.txt)<br />
or<br />
curl -3 -v &#8230; > output.txt 2>&#038;1 (to save both non-error and error/verbose output to the file output.txt)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using cURL for FTP over SSL file transfers by Raul Mejia</title>
		<link>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-285</link>
		<author>Raul Mejia</author>
		<pubDate>Tue, 06 May 2008 14:34:22 +0000</pubDate>
		<guid>http://blog.unixlore.net/2007/11/using-curl-for-ftp-over-ssl-file.html#comment-285</guid>
		<description>Is there a way to redirect the output of information when debugging.  When using option -v, we will receive information of what is occurring such as (
...
 QUIT
</description>
		<content:encoded><![CDATA[<p>Is there a way to redirect the output of information when debugging.  When using option -v, we will receive information of what is occurring such as (<br />
&#8230;<br />
 QUIT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Regular Expressions by PIX Parsing (Usable Logs!) &#171; Practical Tactics</title>
		<link>http://blog.unixlore.net/2006/03/introduction-to-regular-expressions.html#comment-250</link>
		<author>PIX Parsing (Usable Logs!) &#171; Practical Tactics</author>
		<pubDate>Tue, 18 Mar 2008 17:28:18 +0000</pubDate>
		<guid>http://blog.unixlore.net/2006/03/introduction-to-regular-expressions.html#comment-250</guid>
		<description>[...] running queries instead of text-based finds? The following log messages are already supportedand reg-ex can be used to further extend the capabilities. Defining traffic types and being able to make [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] running queries instead of text-based finds? The following log messages are already supportedand reg-ex can be used to further extend the capabilities. Defining traffic types and being able to make [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apt - Debian&#8217;s Killer App by Geek Pit &#187; Blog Archive &#187; Comments on &#34;Why I’m staying with Debian&#34;</title>
		<link>http://blog.unixlore.net/2006/04/apt-debians-killer-app.html#comment-154</link>
		<author>Geek Pit &#187; Blog Archive &#187; Comments on &#34;Why I’m staying with Debian&#34;</author>
		<pubDate>Thu, 28 Feb 2008 21:18:11 +0000</pubDate>
		<guid>http://blog.unixlore.net/2006/04/apt-debians-killer-app.html#comment-154</guid>
		<description>[...] staying with Debian. I tend to agree, Debian is still my favorite Linux distro, primarily for its packaging system. Bruce mentions packaging, but also talks about Debian&#8217;s repositories and unique community. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] staying with Debian. I tend to agree, Debian is still my favorite Linux distro, primarily for its packaging system. Bruce mentions packaging, but also talks about Debian&#8217;s repositories and unique community. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perl Script that Does Bulk Reverse-DNS Lookups by Anonymous</title>
		<link>http://blog.unixlore.net/2006/03/perl-script-that-does-bulk-reverse-dns.html#comment-153</link>
		<author>Anonymous</author>
		<pubDate>Thu, 14 Feb 2008 23:41:00 +0000</pubDate>
		<guid>http://blog.unixlore.net/2006/03/perl-script-that-does-bulk-reverse-dns.html#comment-153</guid>
		<description>&lt;b&gt;Super&lt;/b&gt;, works for me, TNX</description>
		<content:encoded><![CDATA[<p><b>Super</b>, works for me, TNX</p>
]]></content:encoded>
	</item>
</channel>
</rss>
