<?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>My MacOS X&#187; Terminal</title>
	<atom:link href="http://www.mymacosx.com/tag/terminal/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mymacosx.com</link>
	<description>Tips and Tricks for the MacOS X</description>
	<lastBuildDate>Fri, 15 Jul 2011 20:10:09 +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>A wget replacement for MAC OS X</title>
		<link>http://www.mymacosx.com/terminal/wget-replacement-macos.html</link>
		<comments>http://www.mymacosx.com/terminal/wget-replacement-macos.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 06:31:05 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=511</guid>
		<description><![CDATA[So when you need to download a large file and don’t want to have to worry about whether or not Safari or Firefox continues to run with out interruption, use Terminal and curl (wget replacement). Note: wget is not exists in Leopard,  you should set up an alias for wget to curl -O which does [...]<p><a href="http://www.mymacosx.com/terminal/wget-replacement-macos.html">A wget replacement for MAC OS X</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/firefox/firefox-3-6-released.html" rel="bookmark" style="color:#000;font-size:13px">Firefox 3.6 released</a><!-- (6.5)--></li>
		<li><a href="http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html" rel="bookmark" style="color:#000;font-size:13px">The best collection of handy Terminal Commands for Leopard Tweaking</a><!-- (5.2)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-647" title="wget" src="http://www.mymacosx.com/files/2010/04/wget1.png" alt="wget replacment curl" width="128" height="128" />So when you need to download a large file and don’t want to have to worry about whether or not Safari or Firefox continues to run with out interruption, use Terminal and curl (wget replacement).</p>
<p>Note: wget is not exists in Leopard,  you should set up an alias for wget to curl -O which does  exactly the same thing:</p>
<p><code>echo 'alias wget="curl -O"' &gt;&gt; ~/.bash_profile</code></p>
<p>Your are done. Now just easy to use in Terminal. Here example to download iTunes.<br />
<code>wget http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes9/061-7203.20100330.XswP8/iTunes9.1.dmg</code></p>
<h3>Curl is better than wget for the following reasons:</h3>
<ul>
<li>Uses libcurl a cross platform library</li>
<li>curl sends more stuff to stdout and reads more from stdin</li>
<li>curl supports ftp, ftps, http, https, scp sftp, tftp, telnet, dict,  ldap and ldaps while wget</li>
<li>supports only http, https and ftp</li>
<li>curl has ssl support</li>
<li>libcurl supports more http authentication methods</li>
<li>Curl is bidirectional while wget offers http post support only</li>
<li>Curl has more development activities.</li>
</ul>
<p>In fact, <strong>curl offers substantially better download statistics</strong> during<br />
interactive use. It also has th excellent libCURL, which programs in the<br />
operating system leverage as a transport layer. This is simply not<br />
possible using wget, and writing an HTTP 1.1 client is pointless when a<br />
really good one is already available.</p>
<p>Anything you can do with <strong>wget</strong> you can do with curl (with a little effort),<br />
but no amount of effort will result in a well-factored libWGET. You can<br />
(and I have) implemented recursive retrieval by passing the output of curl<br />
through a sed script to find <a> tags and download the target with more<br />
curl invocations.</a></p>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/terminal/wget-replacement-macos.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/terminal/wget-replacement-macos.html">A wget replacement for MAC OS X</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/firefox/firefox-3-6-released.html" rel="bookmark" style="color:#000;font-size:13px">Firefox 3.6 released</a><!-- (6.5)--></li>
		<li><a href="http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html" rel="bookmark" style="color:#000;font-size:13px">The best collection of handy Terminal Commands for Leopard Tweaking</a><!-- (5.2)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/terminal/wget-replacement-macos.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>The best collection of handy Terminal Commands for Leopard Tweaking</title>
		<link>http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html</link>
		<comments>http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 19:19:38 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[preferences]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=331</guid>
		<description><![CDATA[A dark scary place full of text. That’s how it feels at first anyway. This is a selection of Terminal Commands that I have found particularly useful. Change settings for Spaces, Spotlight, Dock, Finder, Time Machine, System, etc that aren&#8217;t accessible through the application or system preferences. If you are just making your first forays [...]<p><a href="http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html">The best collection of handy Terminal Commands for Leopard Tweaking</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html" rel="bookmark" style="color:#000;font-size:13px">Terminal Split Windows in Snow Leopard 10.6</a><!-- (8.3)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/only-show-windows-current-space-expose.html" rel="bookmark" style="color:#000;font-size:13px">Only show windows from current Space in Exposé System 10.6</a><!-- (7.1)--></li>
		<li><a href="http://www.mymacosx.com/tricks-and-tips/quckly-switch-next-wallpaper.html" rel="bookmark" style="color:#000;font-size:13px">Quckly switch to next wallpaper picture</a><!-- (6.8)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p>A dark scary place full of text. That’s how it feels at first anyway. This is a selection of Terminal Commands that I have found particularly useful. Change settings for Spaces, Spotlight, Dock, Finder, Time Machine, System, etc that aren&#8217;t accessible through the application or system preferences. If you are just making your first forays into OS X Terminal land hopefully they will help you out.</p>
<p>Here are some very useful terminal commands and tips for hidden Mac OS X settings.</p>
<h3>All subjects</h3>
<ul class="anchors">
<li><a href="http://www.mymacosx.com/terminal-commands#finder">Finder</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#dock">Dock</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#spaces">Spaces</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#desktop">Desktop</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#time_machine">Time Machine</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#spotlight">Spotlight</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#iso">ISO CD/DVD</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#remote_desktop">Remote Desktop</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#network">Network</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#system_commands">System commands</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#processes">Applications and processes</a></li>
<li><a href="http://www.mymacosx.com/terminal-commands#files">Files management</a></li>
</ul>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html">The best collection of handy Terminal Commands for Leopard Tweaking</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html" rel="bookmark" style="color:#000;font-size:13px">Terminal Split Windows in Snow Leopard 10.6</a><!-- (8.3)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/only-show-windows-current-space-expose.html" rel="bookmark" style="color:#000;font-size:13px">Only show windows from current Space in Exposé System 10.6</a><!-- (7.1)--></li>
		<li><a href="http://www.mymacosx.com/tricks-and-tips/quckly-switch-next-wallpaper.html" rel="bookmark" style="color:#000;font-size:13px">Quckly switch to next wallpaper picture</a><!-- (6.8)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/terminal/handy-collection-terminal-commands-tweaking.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminal Split Windows in Snow Leopard 10.6</title>
		<link>http://www.mymacosx.com/terminal/terminal-split-windows.html</link>
		<comments>http://www.mymacosx.com/terminal/terminal-split-windows.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 08:05:12 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[short keys]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Text Editor]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=175</guid>
		<description><![CDATA[Snow Leopard’s Terminal has a new very useful feature &#8220;SPLIT&#8221; / &#8220;COLLAPSE&#8221; as in many text editors. Check out the split/collapse window buttons here above the scroll bar: Click the top “split” button or press Command+D shortcut and now you’ve got your window split into two usable panes like so: To collapse the window press [...]<p><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html">Terminal Split Windows in Snow Leopard 10.6</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/snow-leopard-folder-content-previews-in-quick-look.html" rel="bookmark" style="color:#000;font-size:13px">Snow/Leopard &#8211; Folder content previews in Quick Look</a><!-- (10.4)--></li>
		<li><a href="http://www.mymacosx.com/finder/finder-tabbed-windows.html" rel="bookmark" style="color:#000;font-size:13px">Finder tabbed windows</a><!-- (10.2)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html" rel="bookmark" style="color:#000;font-size:13px">Enable autoplay of movies in QuickTime Player in Snow Leopard</a><!-- (9.9)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p>Snow Leopard’s Terminal has a new very useful feature &#8220;SPLIT&#8221; / &#8220;COLLAPSE&#8221; as in many<a title="Text Editors" href="http://www.mymacosx.com/textedit"> text editors</a>. Check out the split/collapse window buttons here above the scroll bar:</p>
<p style="text-align: center"><img class="size-full wp-image-176 aligncenter" src="http://www.mymacosx.com/files/2009/10/split-terminal.png" alt="split terminal button" width="363" height="234" /></p>
<p>Click the top “split” button or press <span style="color: #ff6600"><strong>Command+D</strong></span> shortcut and now you’ve got your window split into two usable panes like so:<br />
<img class="aligncenter size-full wp-image-177" src="http://www.mymacosx.com/files/2009/10/splitwindow.png" alt="Split Window layout" width="450" height="388" />To collapse the window press <span style="color: #ff6600"><strong>Command+Shift+D</strong></span></p>
<p>ALso, you can do multiple splits. Aside from general speed increase I think split pane in Terminal is my new favorite feature.</p>
<p><strong>See the Terminal Splits Windows Movie:</strong><br />
<a href="http://www.mymacosx.com/terminal/terminal-split-windows.html"><img src="http://img.youtube.com/vi/pMeWUH5yP8E/default.jpg" width="130" height="97" border=0></a></p>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/terminal/terminal-split-windows.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html">Terminal Split Windows in Snow Leopard 10.6</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/snow-leopard/snow-leopard-folder-content-previews-in-quick-look.html" rel="bookmark" style="color:#000;font-size:13px">Snow/Leopard &#8211; Folder content previews in Quick Look</a><!-- (10.4)--></li>
		<li><a href="http://www.mymacosx.com/finder/finder-tabbed-windows.html" rel="bookmark" style="color:#000;font-size:13px">Finder tabbed windows</a><!-- (10.2)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html" rel="bookmark" style="color:#000;font-size:13px">Enable autoplay of movies in QuickTime Player in Snow Leopard</a><!-- (9.9)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/terminal/terminal-split-windows.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable autoplay of movies in QuickTime Player in Snow Leopard</title>
		<link>http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html</link>
		<comments>http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html#comments</comments>
		<pubDate>Sat, 05 Sep 2009 02:53:00 +0000</pubDate>
		<dc:creator>Amaga</dc:creator>
				<category><![CDATA[QuickTime]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[video player]]></category>

		<guid isPermaLink="false">http://www.mymacosx.com/?p=3</guid>
		<description><![CDATA[As most people are probably aware, the new QuickTime X Player in Snow Leopard has no preferences. One of the preferences is greatly missed was to automatically start playing a movie when it was opened. But you can re-enable that behavior with the following Terminal command: The movie will now start when opened without you [...]<p><a href="http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html">Enable autoplay of movies in QuickTime Player in Snow Leopard</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/quicktime/quicktimex-keyboard-shortcuts.html" rel="bookmark" style="color:#000;font-size:13px">QuickTime X Keyboard Shortcuts</a><!-- (11.4)--></li>
		<li><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html" rel="bookmark" style="color:#000;font-size:13px">Terminal Split Windows in Snow Leopard 10.6</a><!-- (10.9)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/snow-leopard-folder-content-previews-in-quick-look.html" rel="bookmark" style="color:#000;font-size:13px">Snow/Leopard &#8211; Folder content previews in Quick Look</a><!-- (9.8)--></li>
	</ul>
</div>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-104" src="http://www.mymacosx.com/files/2009/09/quicktime-10-build-51-150x150.jpg" alt="QuickTime 10" hspace="10" width="150" height="150" />As most people are probably aware, the new<strong> QuickTime X Player</strong> in Snow Leopard has no preferences.</p>
<p>One of the preferences is greatly missed was to automatically start playing a movie when it was opened.</p>
<p>But you can re-enable that behavior with the following <strong>Terminal</strong> command:</p>
<pre class="brush: plain; title: ; notranslate">defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1</pre>
<p>The movie will now start when opened without you having to press the Play button.</p>
<script src="http://feeds.feedburner.com/~s/MyMacosX?i=http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html" type="text/javascript" charset="utf-8"></script><p><a href="http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html">Enable autoplay of movies in QuickTime Player in Snow Leopard</a> is a post from: <a href="http://www.mymacosx.com">My MacOS X</a></p>


<div style="background-color:#F4F4F4;padding: 5px;border-width:1px; border-style:solid; border-color:#ccc;">
<h3 style="color:#606060;font-size:16px">Related Articles</h3>
<ul>
		<li><a href="http://www.mymacosx.com/quicktime/quicktimex-keyboard-shortcuts.html" rel="bookmark" style="color:#000;font-size:13px">QuickTime X Keyboard Shortcuts</a><!-- (11.4)--></li>
		<li><a href="http://www.mymacosx.com/terminal/terminal-split-windows.html" rel="bookmark" style="color:#000;font-size:13px">Terminal Split Windows in Snow Leopard 10.6</a><!-- (10.9)--></li>
		<li><a href="http://www.mymacosx.com/snow-leopard/snow-leopard-folder-content-previews-in-quick-look.html" rel="bookmark" style="color:#000;font-size:13px">Snow/Leopard &#8211; Folder content previews in Quick Look</a><!-- (9.8)--></li>
	</ul>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.mymacosx.com/snow-leopard/enable-autoplay-of-movies-in-quicktime-player-in-snow-leopard.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc
Database Caching 12/60 queries in 0.017 seconds using apc
Object Caching 1526/1561 objects using apc

Served from: www.mymacosx.com @ 2012-02-06 05:19:12 -->
