<?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>snipeworld.com &#187; OS</title>
	<atom:link href="http://snipeworld.com/category/os/feed/" rel="self" type="application/rss+xml" />
	<link>http://snipeworld.com</link>
	<description>The right man in the right place</description>
	<lastBuildDate>Mon, 28 Jun 2010 05:51:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SSH Tunneling</title>
		<link>http://snipeworld.com/2010/06/28/ssh-tunneling/</link>
		<comments>http://snipeworld.com/2010/06/28/ssh-tunneling/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 05:50:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunneling]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=168</guid>
		<description><![CDATA[Just use this command:
# ssh -f -L local_port:remote_host:remote_port user@remote_host -N
]]></description>
			<content:encoded><![CDATA[<p>Just use this command:</p>
<pre># ssh -f -L local_port:remote_host:remote_port user@remote_host -N</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2010/06/28/ssh-tunneling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X moving by word in terminal</title>
		<link>http://snipeworld.com/2009/11/03/mac-os-x-moving-by-word-in-terminal/</link>
		<comments>http://snipeworld.com/2009/11/03/mac-os-x-moving-by-word-in-terminal/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:23:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=116</guid>
		<description><![CDATA[I had a problem with moving forward and backward by word (like CTRL+left, CTRL+right in others terminals) using Mac OS X system terminal. The solution to resolve it is very simple   Open Preferences » Settings » Keybord and add key mappping:
Option + cursor left = \033b
Option + cursor right = \033f
]]></description>
			<content:encoded><![CDATA[<p>I had a problem with moving forward and backward by word (like CTRL+left, CTRL+right in others terminals) using Mac OS X system terminal. The solution to resolve it is very simple <img src='http://snipeworld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Open Preferences » Settings » Keybord and add key mappping:</p>
<pre>Option + cursor left = \033b</pre>
<pre>Option + cursor right = \033f</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2009/11/03/mac-os-x-moving-by-word-in-terminal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to run screen as daemon?</title>
		<link>http://snipeworld.com/2009/10/15/how-to-run-screen-as-daemon/</link>
		<comments>http://snipeworld.com/2009/10/15/how-to-run-screen-as-daemon/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 07:07:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=104</guid>
		<description><![CDATA[Use this command:
$ screen -dmS screen_name command
]]></description>
			<content:encoded><![CDATA[<p>Use this command:</p>
<pre>$ screen -dmS screen_name command</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2009/10/15/how-to-run-screen-as-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to replace text in many files?</title>
		<link>http://snipeworld.com/2009/10/06/how-to-replace-text-in-many-files/</link>
		<comments>http://snipeworld.com/2009/10/06/how-to-replace-text-in-many-files/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 12:27:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=97</guid>
		<description><![CDATA[perl -pi -w -e 's/source_text/destination_text/g;' *.php
]]></description>
			<content:encoded><![CDATA[<pre>perl -pi -w -e 's/source_text/destination_text/g;' *.php</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2009/10/06/how-to-replace-text-in-many-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to flush dns cache in Mac OS X Leopard ?</title>
		<link>http://snipeworld.com/2009/10/06/how-to-flush-dns-cache-in-mac-os-x-leopard/</link>
		<comments>http://snipeworld.com/2009/10/06/how-to-flush-dns-cache-in-mac-os-x-leopard/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 06:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=92</guid>
		<description><![CDATA[$ dscacheutil -flushcache
]]></description>
			<content:encoded><![CDATA[<pre>$ dscacheutil -flushcache</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2009/10/06/how-to-flush-dns-cache-in-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip: Listing only directories using ls and grep</title>
		<link>http://snipeworld.com/2009/10/02/tip-listing-only-directories-using-ls-and-grep/</link>
		<comments>http://snipeworld.com/2009/10/02/tip-listing-only-directories-using-ls-and-grep/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 08:02:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://snipeworld.com/?p=86</guid>
		<description><![CDATA[Just use small snippet:
$ ls -l &#124; grep "^d"
]]></description>
			<content:encoded><![CDATA[<p>Just use small snippet:</p>
<pre>$ ls -l | grep "^d"</pre>
]]></content:encoded>
			<wfw:commentRss>http://snipeworld.com/2009/10/02/tip-listing-only-directories-using-ls-and-grep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
