<?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>Lee Newton &#187; Linux Tips</title>
	<atom:link href="http://www.blogmeetsworld.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogmeetsworld.com</link>
	<description>all the splinters of my mind</description>
	<lastBuildDate>Wed, 09 Jun 2010 19:57:17 +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>Fast Linux CLI tips</title>
		<link>http://www.blogmeetsworld.com/fast-linux-cli-tips/</link>
		<comments>http://www.blogmeetsworld.com/fast-linux-cli-tips/#comments</comments>
		<pubDate>Tue, 12 May 2009 20:19:18 +0000</pubDate>
		<dc:creator>LRN</dc:creator>
				<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[auto complete]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[linux tip #2]]></category>
		<category><![CDATA[tab]]></category>

		<guid isPermaLink="false">http://www.blogmeetsworld.com/?p=243</guid>
		<description><![CDATA[It came up in discussion with Terry Smith recently, just how much of a revelation bash&#8217;s tab to auto complete feature is for someone who hasn&#8217;t discovered it yet.
Tab once to have bash auto complete a string on the CLI which has only one possible match in your current path. If nothing happens, tab twice [...]]]></description>
			<content:encoded><![CDATA[<p>It came up in discussion with <a title="www.icedteapowered.com" href="http://www.icedteapowered.com/" target="_blank">Terry Smith</a> recently, just how much of a revelation bash&#8217;s tab to auto complete feature is for someone who hasn&#8217;t discovered it yet.</p>
<p>Tab once to have bash auto complete a string on the CLI which has only one possible match in your current path. If nothing happens, tab twice to see possible matches then continue typing to narrow the focus to one possible match, then tab again to auto complete.</p>
<p>It&#8217;s not worth going into any more detail, but if you don&#8217;t already know what I&#8217;m talking about, next time you&#8217;ve got a linux terminal window open, start hitting tab.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogmeetsworld.com/fast-linux-cli-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Tip #1</title>
		<link>http://www.blogmeetsworld.com/linux-tip-1/</link>
		<comments>http://www.blogmeetsworld.com/linux-tip-1/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:32:07 +0000</pubDate>
		<dc:creator>LRN</dc:creator>
				<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.blogmeetsworld.com/?p=238</guid>
		<description><![CDATA[This one&#8217;s really basic, but just because you&#8217;re an ace php developer doesn&#8217;t necessarily mean you&#8217;ve had a chance to discover all the ins and outs of bash and the linux command line. One of the guys in the office recently asked me how to make a change to multiple files in his code base [...]]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s really basic, but just because you&#8217;re an ace php developer doesn&#8217;t necessarily mean you&#8217;ve had a chance to discover all the ins and outs of bash and the linux command line. One of the guys in the office recently asked me how to make a change to multiple files in his code base with a single line command. Find and <a title="The sed FAQ" href="http://www.linuxtopia.org/online_books/linux_tool_guides/the_sed_faq/index.html" target="_blank">sed</a> are your friends here. Since I&#8217;m a huge fun of doing as many things as possible with one liners, here&#8217;s the gist of what we did.</p>
<p><code>find . -name '*.php' -exec sed -i -e"s#search#replace#g" {} \;</code></p>
<p>Find the files you want, run sed on each one of them, edit inline with the included expression, done.</p>
<p>Big thing to note is sed using &#8216;#&#8217; for a seperator and not &#8216;/&#8217; . I believe the man page still talks about using a forward slash, but &#8216;#&#8217; works.</p>
<p>The results from your find command are run through the {} so don&#8217;t forget that, and a find -exec must be terminated with a \;</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogmeetsworld.com/linux-tip-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips from a sysadmin at b5media</title>
		<link>http://www.blogmeetsworld.com/tips-from-a-sysadmin-at-b5media/</link>
		<comments>http://www.blogmeetsworld.com/tips-from-a-sysadmin-at-b5media/#comments</comments>
		<pubDate>Tue, 12 May 2009 14:34:37 +0000</pubDate>
		<dc:creator>LRN</dc:creator>
				<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.blogmeetsworld.com/?p=236</guid>
		<description><![CDATA[As part of my on going effort to do anything at all with this blog, I&#8217;ve decided to start posting any little linux tidbits that spin out of the day to day here at b5media. This new category is where I&#8217;ll slap up anything that folks new to linux, or looking for the odd time [...]]]></description>
			<content:encoded><![CDATA[<p>As part of my on going effort to do anything at all with this blog, I&#8217;ve decided to start posting any little linux tidbits that spin out of the day to day here at b5media. This new category is where I&#8217;ll slap up anything that folks new to linux, or looking for the odd time saver here or there might appreciate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogmeetsworld.com/tips-from-a-sysadmin-at-b5media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
