<?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>Cultivate Web Design Melbourne - Development Blog &#187; shell</title>
	<atom:link href="http://cultivatewebdesign.com.au/blog/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://cultivatewebdesign.com.au/blog</link>
	<description></description>
	<lastBuildDate>Thu, 12 Aug 2010 04:16:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Find out which package to install when faced with a missing file/lib error</title>
		<link>http://cultivatewebdesign.com.au/blog/find-out-which-package-to-install-when-faced-with-a-missing-filelib-error/</link>
		<comments>http://cultivatewebdesign.com.au/blog/find-out-which-package-to-install-when-faced-with-a-missing-filelib-error/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 03:49:38 +0000</pubDate>
		<dc:creator>Chris Gunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dependancy]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://cultivatewebdesign.com.au/blog/?p=180</guid>
		<description><![CDATA[Get errors like this? Warning: dl(): Unable to load dynamic library 'libwebpayclient.so' - libssl.so.4: cannot open shared object file: Not sure which package to install? Run the code below to find out! sudo apt-get install apt-file sudo apt-file update apt-file search libssl.so]]></description>
			<content:encoded><![CDATA[<pre>Get errors like this?

Warning: dl(): Unable to load dynamic library 'libwebpayclient.so' - libssl.so.4: cannot open shared object file:
Not sure which package to install? Run the code below to find out!
<pre class="brush: bash;">
 sudo apt-get install apt-file
 sudo apt-file update
 apt-file search libssl.so
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://cultivatewebdesign.com.au/blog/find-out-which-package-to-install-when-faced-with-a-missing-filelib-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search file contents recursively for a matching string</title>
		<link>http://cultivatewebdesign.com.au/blog/search-file-contents-recursively-for-a-matching-string/</link>
		<comments>http://cultivatewebdesign.com.au/blog/search-file-contents-recursively-for-a-matching-string/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 22:44:16 +0000</pubDate>
		<dc:creator>Chris Gunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[file search]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux file search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search files contents]]></category>
		<category><![CDATA[search in files]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[unix file search]]></category>

		<guid isPermaLink="false">http://cultivatewebdesign.com.au/blog/?p=110</guid>
		<description><![CDATA[I use thing to find where an error message came from or to check if I left behind any debuging/testing the code. grep -R &#38;quot;string to search for&#38;quot; ./* more info at grep man page]]></description>
			<content:encoded><![CDATA[<p>I use thing to find where an error message came from or to check if I left behind any debuging/testing the code.</p>
<pre class="brush: bash;">
grep -R &amp;quot;string to search for&amp;quot; ./*
</pre>
<p><a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?grep" target="_b">more info at grep man page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cultivatewebdesign.com.au/blog/search-file-contents-recursively-for-a-matching-string/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>List all files sorted by size in unix/linux (recursive)</title>
		<link>http://cultivatewebdesign.com.au/blog/list-all-files-sorted-by-size-in-unixlinux-recursive/</link>
		<comments>http://cultivatewebdesign.com.au/blog/list-all-files-sorted-by-size-in-unixlinux-recursive/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 02:19:32 +0000</pubDate>
		<dc:creator>Chris Gunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[find files that take up disk space]]></category>
		<category><![CDATA[find large files]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[list files by size]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[sort files by size]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://cultivatewebdesign.com.au/blog/?p=93</guid>
		<description><![CDATA[du -ks ./* &#124; sort -n -r]]></description>
			<content:encoded><![CDATA[<pre class="brush: bash;">
du -ks ./* | sort -n -r
</pre>
]]></content:encoded>
			<wfw:commentRss>http://cultivatewebdesign.com.au/blog/list-all-files-sorted-by-size-in-unixlinux-recursive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

