<?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>yadUK - Effective Information System Solutions &#187; Linux CLI</title>
	<atom:link href="http://www.yaduk.co.uk/category/blog/linux-command-line-interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yaduk.co.uk</link>
	<description>Effective Information System Solutions</description>
	<lastBuildDate>Thu, 01 Apr 2010 18:43:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>/dev/null does not exist</title>
		<link>http://www.yaduk.co.uk/2009/11/25/dev_null_does_not_exist/</link>
		<comments>http://www.yaduk.co.uk/2009/11/25/dev_null_does_not_exist/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 16:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux CLI]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.yaduk.co.uk/?p=394</guid>
		<description><![CDATA[<p>Lost your /dev/null by accidently shoving a file there as root? Use the following to recreate:</p>
<p>rm /dev/null; mknod -m 666 /dev/null c 1 3</p>
]]></description>
			<content:encoded><![CDATA[<p>Lost your /dev/null by accidently shoving a file there as root? Use the following to recreate:</p>
<p>rm /dev/null; mknod -m 666 /dev/null c 1 3</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.yaduk.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.yaduk.co.uk/2009/11/25/dev_null_does_not_exist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>find &#8211; what you&#8217;re looking for and more</title>
		<link>http://www.yaduk.co.uk/2009/04/06/find-what-youre-looking-for-and-more/</link>
		<comments>http://www.yaduk.co.uk/2009/04/06/find-what-youre-looking-for-and-more/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 08:05:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux CLI]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.yaduk.co.uk/?p=189</guid>
		<description><![CDATA[<p>Using find on the command line as su is a great way to remove spent sessions from your /tmp directory for instance.</p>
<p>find -user theusersname -delete</p>
<p>Will remove all instances of that users files. A great quick way to clean up after a rogue application in development.</p>
]]></description>
			<content:encoded><![CDATA[<p>Using find on the command line as su is a great way to remove spent sessions from your /tmp directory for instance.</p>
<p>find -user theusersname -delete</p>
<p>Will remove all instances of that users files. A great quick way to clean up after a rogue application in development.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.yaduk.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.yaduk.co.uk/2009/04/06/find-what-youre-looking-for-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change word in all files in directory (+recursively)</title>
		<link>http://www.yaduk.co.uk/2009/04/04/change-instances-of-a-word-in-all-files-in-directory-andor-recursively/</link>
		<comments>http://www.yaduk.co.uk/2009/04/04/change-instances-of-a-word-in-all-files-in-directory-andor-recursively/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:00:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux CLI]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.yaduk.co.uk/?p=180</guid>
		<description><![CDATA[<div><span style="font-family: Courier New;">These commands will replace all instances of &#8216;foo&#8217; with &#8216;bar&#8217; in all files in the current working directory and any sub-directories.</span></div>
<p><span style="font-family: Courier New;"><strong>Current Directory:</strong><br />
sed -i s/foo/bar/g *</span></p>
<p><span style="font-family: Courier New;"><strong>Recursively:</strong><br />
</span><span style="font-family: Courier New;">find * -type f -exec sed -i s/foo/bar/g {} \;</span></p>
]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Courier New;">These commands will replace all instances of &#8216;foo&#8217; with &#8216;bar&#8217; in all files in the current working directory and any sub-directories.</span></div>
<p><span style="font-family: Courier New;"><strong>Current Directory:</strong><br />
sed -i s/foo/bar/g *</span></p>
<p><span style="font-family: Courier New;"><strong>Recursively:</strong><br />
</span><span style="font-family: Courier New;">find * -type f -exec sed -i s/foo/bar/g {} \;</span></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.yaduk.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.yaduk.co.uk/2009/04/04/change-instances-of-a-word-in-all-files-in-directory-andor-recursively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
