<?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>Manisfam &#187; Macs among us</title>
	<atom:link href="http://www.manisfam.com/category/macs-among-us/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.manisfam.com</link>
	<description>Manis family news</description>
	<lastBuildDate>Mon, 23 Jan 2012 01:23:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>wget on OS X</title>
		<link>http://www.manisfam.com/2008/08/22/wget-on-os-x/</link>
		<comments>http://www.manisfam.com/2008/08/22/wget-on-os-x/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 05:17:21 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Macs among us]]></category>

		<guid isPermaLink="false">http://www.manisfam.com/2008/08/22/wget-on-os-x/</guid>
		<description><![CDATA[Mac OS 10.5 includes curl, but not wget for some reason. Obviously, you want wget. Quentin Stafford has put together a binary for you.]]></description>
			<content:encoded><![CDATA[<p>Mac OS 10.5 includes curl, but not wget for some reason. Obviously, you want wget. Quentin Stafford has put together <a href="http://www.statusq.org/archives/2008/07/30/1954/">a binary for you</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.manisfam.com/2008/08/22/wget-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage Hidden Mac Files</title>
		<link>http://www.manisfam.com/2006/08/04/manage-hidden-mac-files/</link>
		<comments>http://www.manisfam.com/2006/08/04/manage-hidden-mac-files/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 01:08:34 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Macs among us]]></category>

		<guid isPermaLink="false">http://www.manisfam.com/2006/08/04/manage-hidden-mac-files/</guid>
		<description><![CDATA[Mac OS X leaves invisible files on Windows shares, but the files are visible to Windows users. The files are harmless but irritating. Here's a brief article explaining the matter: "Dealing with Resource Forks and .DS_Store Files on non-Mac Volumes". There are a couple of ways to suppress these guys: Apple offers command line instructions [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS X leaves invisible files on Windows shares, but the files are visible to Windows users. The files are harmless but irritating. Here's a brief article explaining the matter: <a href="http://www.lowendmac.com/crews/06/0104.html">"Dealing with Resource Forks and .DS_Store Files on non-Mac Volumes"</a>.</p>

<p>There are a couple of ways to suppress these guys:</p>

<p>Apple offers command line <a href="http://docs.info.apple.com/article.html?artnum=301711">instructions to suppress these critters</a>.</p>

<p><a href="http://www.zeroonetwenty.com/blueharvest/">BlueHarvest</a> is a $10 shareware control panel to selectively suppress and delete the files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manisfam.com/2006/08/04/manage-hidden-mac-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix utilities</title>
		<link>http://www.manisfam.com/2006/06/22/unix-utilities/</link>
		<comments>http://www.manisfam.com/2006/06/22/unix-utilities/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 04:50:34 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Macs among us]]></category>

		<guid isPermaLink="false">http://www.manisfam.com/2006/06/22/unix-utilities/</guid>
		<description><![CDATA[A list of common Unix utilities with brief, bare-bones examples and links to documentation. All of these utilities are available in Unix, Linux, and OS X systems in one form or another. Feel free to post tips, examples, and corrections or recommend other utilities in the comments. Note: Remember that OS X Unix utilities will [...]]]></description>
			<content:encoded><![CDATA[<p>A list of common Unix utilities with brief, bare-bones examples and links to documentation. All of these utilities are available in Unix, Linux, and OS X systems in one form or another. Feel free to post tips, examples, and corrections or recommend other utilities in the comments.</p>

<p>Note: Remember that OS X Unix utilities will blow out your file's resource fork, meaning that image previews, file types, and other information will be lost. Some files will refuse to work again. If you want to preserve your files just as they are on your Mac, use the included GUI utilities instead.</p>

<h3>Tar</h3>

<p><a href="http://www.gnu.org/software/tar/manual/">GNU tar manual</a></p>

<p>Archive a directory recursively:</p>

<pre><code>tar cvf mydirectory.tar mydirectory
</code></pre>

<p>To extract a tarball:</p>

<pre><code>tar xvf mydirectory.tar
</code></pre>

<p>To create a compressed directory:</p>

<pre><code>tar cvzf mydirectory.tgz mydirectory
</code></pre>

<h3>Gzip</h3>

<p><a href="http://www.gnu.org/software/gzip/manual/gzip.html">GNU gzip manual</a></p>

<p>To zip a file called science.txt in place to a file called science.txt.gz:</p>

<pre><code>gzip science.txt
</code></pre>

<p>Use gunzip to uncompress the file:</p>

<pre><code>gunzip science.txt.gz
</code></pre>

<h3>Grep</h3>

<p><a href="http://www.gnu.org/software/grep/doc/grep_toc.html#SEC_Contents">GNU grep manual</a></p>

<pre><code>grep [options] "searchstring" [directory / patterns]
</code></pre>

<p>Find the string "wilson" in all files in the current directory:</p>

<pre><code>grep 'wilson' *
</code></pre>

<p>Find "wilson" only in text files:</p>

<pre><code>grep 'wilson' *.txt
</code></pre>

<p>Find "wilson" in .txt files in another directory:</p>

<pre><code>grep "serials" ~/Documents/doug/*.txt
</code></pre>

<p>Find "wilson", case-insensitive, print line numbers of results, other directory, .txt files only:</p>

<pre><code>grep -in 'wilson' ~/Documents/doug/*.txt
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.manisfam.com/2006/06/22/unix-utilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Mac OS X programs</title>
		<link>http://www.manisfam.com/2006/04/13/essential-mac-os-x-programs/</link>
		<comments>http://www.manisfam.com/2006/04/13/essential-mac-os-x-programs/#comments</comments>
		<pubDate>Fri, 14 Apr 2006 03:01:47 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Macs among us]]></category>

		<guid isPermaLink="false">http://www.manisfam.com/2006/04/13/essential-mac-os-x-programs/</guid>
		<description><![CDATA[Several friends and colleagues have asked me what tools they need to use Mac OS X at work, so I'm going to post a list here. Please post your own essential OS X tools in the comments. I'll update the list as more programs come to mind. Web browsers Safari: Very fast, ships with OS [...]]]></description>
			<content:encoded><![CDATA[<p>Several friends and colleagues have asked me what tools they need to use Mac OS X at work, so I'm going to post a list here. Please post your own essential OS X tools in the comments. I'll update the list as more programs come to mind.</p>

<h3>Web browsers</h3>

<p>Safari: Very fast, ships with OS X.</p>

<p><a href="http://www.mozilla.com/firefox/">Firefox</a>: Just like the Windows version. Recommended.</p>

<p><a href="http://www.caminobrowser.org/">Camino</a> and <a href="http://www.omnigroup.com/applications/omniweb/">OmniWeb</a> are also very good. Opera is not, don't use it.</p>

<h3>Text editors</h3>

<p><a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>: Very good and free.</p>

<p>TextEdit: Ships with OS X. Much better than Notepad, but not as good as TextWrangler.</p>

<p><a href="http://macromates.com/">TextMate</a>: Not free, but very good progammer features such as code-folding, bookmarks, and code auto-completion.</p>

<p><a href="http://aquamacs.org/">Aquamacs</a>: Mac-ified interface for Emacs. If you like Emacs, I recommend Aquamacs.</p>

<p>From the UNIX Terminal: vi, emacs, pico.</p>

<p><a href="http://www.barebones.com/products/bbedit/">BBEdit</a>. Byron reminds me to mention one of the oldest, most comprehensive, and most expensive Mac text editors. If you need its advanced features, BBEdit is worth the money. If you can get by without the HTML tools and snippet libraries, go with the free <a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>. How on earth did I forget BBEdit?</p>

<h3>FTP clients</h3>

<p><a href="http://www.panic.com/transmit/">Transmit</a>: Limited features, but a very nice interface, very easy to use. I use this one the most.</p>

<p><a href="http://www.interarchy.com/main/">Interarchy</a>: Much more powerful than Transmit, but more complex as well.</p>

<p>Of course, you can always go command line if you like.</p>

<h3>Finder enhancements</h3>

<p>The OS X Finder is generally lacking, so here are some add-ons I can't live without:</p>

<p><a href="http://www.finderpop.com/">FinderPop</a>: A very old extension to OS 8/9, finally available for OS X. A very handy pop-up menu and file launcher. My favorite OS X enhancement.</p>

<p><a href="http://www.obdev.at/products/launchbar/index.html">LaunchBar</a>: Fast, unobtrusive file launcher. This is my second favorite OS X add-on. I literally could not work without this tool.</p>

<p><a href="http://www.google.com/search?q=open+terminal+here&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official">Open Terminal Here</a>: A Toolbar Script from <a href="http://www.entropy.ch/">Marc Liyanage</a> that adds a button to open the current Finder directory in the Terminal.</p>

<p><a href="http://www.versiontracker.com/dyn/moreinfo/macosx/14722">InVisibles</a>: A Toolbar button to toggle invisible files on and off.</p>

<p><a href="http://www.bergenstreetsoftware.com/">PathSnagger</a>: Contextual menu that copies the full path of a file or directory. Very handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manisfam.com/2006/04/13/essential-mac-os-x-programs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

