<?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>The Filipino Programmer &#187; Unix</title>
	<atom:link href="http://www.cybervaldez.com/category/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 Oct 2011 08:05:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to find, look or search for a specific file in linux</title>
		<link>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/</link>
		<comments>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 14:18:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1289</guid>
		<description><![CDATA[A common problem for those aren&#8217;t aware of using linux are locating certain files(this is when troubleshooting, or simply doing steps from a guide) Problem: I&#8217;m looking for a file in linux! How do I find this? Answer: You can easily find a file by using the find command: find / -name &#8220;httpd.conf&#8221; -print Note: [...]]]></description>
			<content:encoded><![CDATA[<p>A common problem for those aren&#8217;t aware of using linux are locating certain files(this is when troubleshooting, or simply doing steps from a guide)</p>

<p><strong>Problem</strong>: I&#8217;m looking for a file in linux! How do I find this?</p>

<p><strong>Answer</strong>: You can easily find a file by using the <strong>find</strong> command:</p>

<blockquote>
  <p>find / -name &#8220;httpd.conf&#8221; -print</p>
</blockquote>

<p><strong>Note: the -print option will print out the location of the name, / represents what location to start.</strong></p>

<p>If you are interested in knowing more about the find command, look no further than the following link:

http://www.ling.ohio-state.edu/~kyoon/tts/unix-help/unix-find-command-examples.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Super Tip: How to CHMOD all your files recursively</title>
		<link>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:09:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[individual]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1052</guid>
		<description><![CDATA[Problem: How do I set permissions to my files and/or directories without manually setting them up individually? Note: You may need administrator privileges for these to work, if that&#8217;s the case simply add a sudo before typing the commands below. If you want to chmod all your directories: find . -type d -exec chmod 755 [...]]]></description>
			<content:encoded><![CDATA[<p>Problem: How do I set permissions to my files and/or directories without manually setting them up individually?</p>

<p><strong>Note:</strong> You may need administrator privileges for these to work, if that&#8217;s the case simply add a <strong>sudo</strong> before typing the commands below.</p>

<p>If you want to chmod all your directories:</p>

<blockquote>find . -type d -exec chmod 755 {} \;</blockquote>

<p>and for files:</p>

<blockquote>find . -type f -exec chmod 644 {} \;</blockquote>

<p><strong>That&#8217;s it!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-how-to-chmod-all-your-files-recursively/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Super Tip: Easy Access to your files and directories by creating symbolic links(shortcuts)</title>
		<link>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/</link>
		<comments>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 18:36:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[ln]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[symbolic]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1009</guid>
		<description><![CDATA[How to create shortcuts to your folders and files in Mac or Linux, aka Symbolic Linking.]]></description>
			<content:encoded><![CDATA[<p>The directory structure of Mac and Linux(both are UNIX) tends to get really <strong>_really_</strong> long. But don&#8217;t worry, by using the <code>ln -s</code>, or <strong>Symbolic Link</strong> command in the terminal(unix shell), creating <strong>&#8220;shortcuts&#8221;</strong> to your folders or files is now a breeze.</p>

<blockquote><code>ln -s <source_file_or_folder> <shortcut_name></code>  &nbsp; 
Here&#8217;s an example: 
<code>ln -s /Library/Python/2.5/ /shortcuts/PYTHON</code> &nbsp; </blockquote>

<p>The effect: <code>cd /shortcuts/PYTHON</code> is now the same as <code>cd /Library/Python/2.5/</code>, removing a shortcut is similar to removing a file: <code>rm /shortcuts/PYTHON</code>&#8230; <strong>that&#8217;s it!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/unix-super-tip-easy-access-to-your-files-and-directories-by-creating-symbolic-links_or_shortcuts/2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

