<?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>Linux Ask! &#187; Other Unix-like Operating Systems</title>
	<atom:link href="http://www.linuxask.com/topics/other-unix-like-distributions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Sat, 04 Feb 2012 05:57:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Install bash completion for Mac OSX</title>
		<link>http://www.linuxask.com/questions/install-bash-completion-for-mac-osx</link>
		<comments>http://www.linuxask.com/questions/install-bash-completion-for-mac-osx#comments</comments>
		<pubDate>Thu, 26 Jan 2012 15:26:12 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3650</guid>
		<description><![CDATA[Install bash completion for Mac OSX Answer: Bash completion (bash-complete) is a tool that allow you to auto complete commands and their arguments easily using the "tab" keys. Firstly, make sure you have installed Homebrew, then # brew install git bash-completion And add the following lines in your ~/.bash_profile if [ -f `brew --prefix`/etc/bash_completion ]; <a href='http://www.linuxask.com/questions/install-bash-completion-for-mac-osx'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-install-homebrew-for-mac' rel='bookmark' title='How to install homebrew for Mac?'>How to install homebrew for Mac?</a></li>
<li><a href='http://www.linuxask.com/questions/install-git-in-mac-using-macport' rel='bookmark' title='Install Git in Mac using MacPort'>Install Git in Mac using MacPort</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-easy-install-for-python-in-ubuntu' rel='bookmark' title='How to install Easy Install for Python in Ubuntu'>How to install Easy Install for Python in Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install bash completion for Mac OSX</p>
<p><strong>Answer:</strong></p>
<p>Bash completion (<strong>bash-complete</strong>) is a tool that allow you to auto complete commands and their arguments easily using the "<strong>tab</strong>" keys.</p>
<p>Firstly, make sure you have installed <a href="http://www.linuxask.com/questions/how-to-install-homebrew-for-mac"> Homebrew</a>, then</p>
<pre><code># brew install git bash-completion</code></pre>
<p>And add the following lines in your <strong>~/.bash_profile</strong></p>
<pre><code>if [ -f `brew --prefix`/etc/bash_completion ]; then
    . `brew --prefix`/etc/bash_completion
fi</code></pre>
<p>Restart your terminal and now you can see the effect of bash complete by <strong>tabbing</strong>..</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-install-homebrew-for-mac' rel='bookmark' title='How to install homebrew for Mac?'>How to install homebrew for Mac?</a></li>
<li><a href='http://www.linuxask.com/questions/install-git-in-mac-using-macport' rel='bookmark' title='Install Git in Mac using MacPort'>Install Git in Mac using MacPort</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-install-easy-install-for-python-in-ubuntu' rel='bookmark' title='How to install Easy Install for Python in Ubuntu'>How to install Easy Install for Python in Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-bash-completion-for-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get the MD5 checksum of a file under Mac OSX</title>
		<link>http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx</link>
		<comments>http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx#comments</comments>
		<pubDate>Fri, 13 Jan 2012 15:42:59 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3619</guid>
		<description><![CDATA[How to get the MD5 checksum of a file under Mac OSX Answer: To get the MD5 checksum of a file under Mac OSX, like the md5sum command in Linux, you can use: # md5 my-file.zip Related posts: How to perform checksum on a folder? How to perform checksum on a file? How to check <a href='http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder' rel='bookmark' title='How to perform checksum on a folder?'>How to perform checksum on a folder?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file' rel='bookmark' title='How to perform checksum on a file?'>How to perform checksum on a file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-check-if-a-file-is-locked-in-linux' rel='bookmark' title='How to check if a file is locked in Linux?'>How to check if a file is locked in Linux?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to get the MD5 checksum of a file under Mac OSX</p>
<p><strong>Answer:</strong></p>
<p>To get the MD5 checksum of a file under Mac OSX, like the <a href="http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file">md5sum </a>command in Linux, you can use:</p>
<p><code># md5 my-file.zip</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-folder' rel='bookmark' title='How to perform checksum on a folder?'>How to perform checksum on a folder?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-checksum-on-a-file' rel='bookmark' title='How to perform checksum on a file?'>How to perform checksum on a file?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-check-if-a-file-is-locked-in-linux' rel='bookmark' title='How to check if a file is locked in Linux?'>How to check if a file is locked in Linux?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import private key into Mac&#8217;s KeyChain</title>
		<link>http://www.linuxask.com/questions/import-private-key-into-macs-keychain</link>
		<comments>http://www.linuxask.com/questions/import-private-key-into-macs-keychain#comments</comments>
		<pubDate>Mon, 09 Jan 2012 03:24:55 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3615</guid>
		<description><![CDATA[Import private key into Mac's KeyChain Answer: To import a private key e.g. key.p12 into your login keychain, use the command: # security import key.p12 -k ~/Library/Keychains/login.keychain Related posts: Import files and directories into a SVN repository Import a CSV file into MySQL database Create MySQL Dump that ignore duplicate key error when import back <a href='http://www.linuxask.com/questions/import-private-key-into-macs-keychain'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/import-files-and-directories-into-a-svn-repository' rel='bookmark' title='Import files and directories into a SVN repository'>Import files and directories into a SVN repository</a></li>
<li><a href='http://www.linuxask.com/questions/import-a-csv-file-into-mysql-database' rel='bookmark' title='Import a CSV file into MySQL database'>Import a CSV file into MySQL database</a></li>
<li><a href='http://www.linuxask.com/questions/create-mysql-dump-that-ignore-duplicate-key-error-when-import-back-to-mysql' rel='bookmark' title='Create MySQL Dump that ignore duplicate key error when import back to MySQL'>Create MySQL Dump that ignore duplicate key error when import back to MySQL</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Import private key into Mac's KeyChain</p>
<p><strong>Answer:</strong></p>
<p>To import a private key e.g. key.p12 into your login keychain, use the command:</p>
<p><code># security import key.p12 -k ~/Library/Keychains/login.keychain</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/import-files-and-directories-into-a-svn-repository' rel='bookmark' title='Import files and directories into a SVN repository'>Import files and directories into a SVN repository</a></li>
<li><a href='http://www.linuxask.com/questions/import-a-csv-file-into-mysql-database' rel='bookmark' title='Import a CSV file into MySQL database'>Import a CSV file into MySQL database</a></li>
<li><a href='http://www.linuxask.com/questions/create-mysql-dump-that-ignore-duplicate-key-error-when-import-back-to-mysql' rel='bookmark' title='Create MySQL Dump that ignore duplicate key error when import back to MySQL'>Create MySQL Dump that ignore duplicate key error when import back to MySQL</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/import-private-key-into-macs-keychain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set JAVA_HOME on Mac OSX</title>
		<link>http://www.linuxask.com/questions/how-to-set-java_home-on-mac-osx</link>
		<comments>http://www.linuxask.com/questions/how-to-set-java_home-on-mac-osx#comments</comments>
		<pubDate>Tue, 03 Jan 2012 16:09:58 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3604</guid>
		<description><![CDATA[How to set JAVA_HOME on OSX Answer: To set the JAVA_HOME environment variable on OSX, add the following line in your ~/.bash_profile export JAVA_HOME=$(/usr/libexec/java_home) That's all. Related posts: How to add a directory into the PATH environment variable? How to unset an environment variable in bash Simple environment variable usage in Linux
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-add-a-directory-into-the-path-environment-variable' rel='bookmark' title='How to add a directory into the PATH environment variable?'>How to add a directory into the PATH environment variable?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-unset-an-environment-variable-in-bash' rel='bookmark' title='How to unset an environment variable in bash'>How to unset an environment variable in bash</a></li>
<li><a href='http://www.linuxask.com/questions/simple-environment-variable-usage-in-linux' rel='bookmark' title='Simple environment variable usage in Linux'>Simple environment variable usage in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to set JAVA_HOME on OSX</p>
<p><strong>Answer:</strong></p>
<p>To set the <strong>JAVA_HOME</strong> environment variable on OSX, add the following line in your <strong>~/.bash_profile</strong></p>
<p><code>export JAVA_HOME=$(/usr/libexec/java_home) </code></p>
<p>That's all.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-add-a-directory-into-the-path-environment-variable' rel='bookmark' title='How to add a directory into the PATH environment variable?'>How to add a directory into the PATH environment variable?</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-unset-an-environment-variable-in-bash' rel='bookmark' title='How to unset an environment variable in bash'>How to unset an environment variable in bash</a></li>
<li><a href='http://www.linuxask.com/questions/simple-environment-variable-usage-in-linux' rel='bookmark' title='Simple environment variable usage in Linux'>Simple environment variable usage in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-set-java_home-on-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install homebrew for Mac?</title>
		<link>http://www.linuxask.com/questions/how-to-install-homebrew-for-mac</link>
		<comments>http://www.linuxask.com/questions/how-to-install-homebrew-for-mac#comments</comments>
		<pubDate>Thu, 29 Dec 2011 16:52:59 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3597</guid>
		<description><![CDATA[How to install homebrew for Mac? Answer: Homebrew is the easiest and most flexible way to install the UNIX tools Apple didn't include with OS X. To install under Mac's terminal, type # /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" That's it. Related posts: Install git under Ubuntu Install Ruby in Ubuntu Install RubyOnRails in Ubuntu
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/install-git-under-ubuntu' rel='bookmark' title='Install git under Ubuntu'>Install git under Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-ruby-in-ubuntu' rel='bookmark' title='Install Ruby in Ubuntu'>Install Ruby in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-rubyonrails-in-ubuntu' rel='bookmark' title='Install RubyOnRails in Ubuntu'>Install RubyOnRails in Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to install homebrew for Mac?</p>
<p><strong>Answer:</strong></p>
<p><strong>Homebrew</strong> is the easiest and most flexible way to install the UNIX tools Apple didn't include with OS X. To install under Mac's terminal, type</p>
<p><code># /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"</code></p>
<p>That's it.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/install-git-under-ubuntu' rel='bookmark' title='Install git under Ubuntu'>Install git under Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-ruby-in-ubuntu' rel='bookmark' title='Install Ruby in Ubuntu'>Install Ruby in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/install-rubyonrails-in-ubuntu' rel='bookmark' title='Install RubyOnRails in Ubuntu'>Install RubyOnRails in Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-install-homebrew-for-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to print screen in Mac OS X</title>
		<link>http://www.linuxask.com/questions/how-to-print-screen-in-mac-os-x</link>
		<comments>http://www.linuxask.com/questions/how-to-print-screen-in-mac-os-x#comments</comments>
		<pubDate>Sun, 21 Aug 2011 15:49:49 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3321</guid>
		<description><![CDATA[How to print screen in Mac OS X Answer: 1. To print the whole screen in Mac OS X, try Press down Apple key ⌘ + Shift + 3 at the same time 2. To print an active window Press down Apple key ⌘ + Shift + 4 at the same time When you see <a href='http://www.linuxask.com/questions/how-to-print-screen-in-mac-os-x'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-print-something-to-screen' rel='bookmark' title='How to print something to screen'>How to print something to screen</a></li>
<li><a href='http://www.linuxask.com/questions/quickly-clear-the-screen' rel='bookmark' title='Quickly clear the screen'>Quickly clear the screen</a></li>
<li><a href='http://www.linuxask.com/questions/reset-a-screen' rel='bookmark' title='Reset a screen'>Reset a screen</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to print screen in Mac OS X</p>
<p><strong>Answer:</strong></p>
<p>1. To print the whole screen in Mac OS X, try </p>
<p><code>Press down Apple key ⌘ + Shift + 3 at the same time</code></p>
<p>2. To print an active window</p>
<p><code>Press down Apple key ⌘ + Shift + 4 at the same time</code></p>
<p>When you see the mouse changed to +, press the <strong>space </strong>key in your keyboard.</p>
<p>3. To print a portion of your screen</p>
<p><code>Press down Apple key ⌘ + Shift + 4 at the same time</code></p>
<p>When you see the mouse changed to +, move your mouse to select the <strong>portion </strong>.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-print-something-to-screen' rel='bookmark' title='How to print something to screen'>How to print something to screen</a></li>
<li><a href='http://www.linuxask.com/questions/quickly-clear-the-screen' rel='bookmark' title='Quickly clear the screen'>Quickly clear the screen</a></li>
<li><a href='http://www.linuxask.com/questions/reset-a-screen' rel='bookmark' title='Reset a screen'>Reset a screen</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-print-screen-in-mac-os-x/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make desktop icons snap to grid on Mac OSX</title>
		<link>http://www.linuxask.com/questions/how-to-make-desktop-icons-snap-to-grid-on-mac-osx</link>
		<comments>http://www.linuxask.com/questions/how-to-make-desktop-icons-snap-to-grid-on-mac-osx#comments</comments>
		<pubDate>Mon, 28 Feb 2011 11:13:10 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2831</guid>
		<description><![CDATA[How to make desktop icons snap to grid on Mac OSX Answer: To make desktop icons on Mac OSX snap to grid, follow the steps below: 1. Click anywhere on the desktop 2. Select "Show View Options" 3. At the row "Arrange By", select "Snap to Grid" That's all what you need. Related posts: Make <a href='http://www.linuxask.com/questions/how-to-make-desktop-icons-snap-to-grid-on-mac-osx'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/make-a-file-executable-in-linux' rel='bookmark' title='Make a file executable in Linux'>Make a file executable in Linux</a></li>
<li><a href='http://www.linuxask.com/questions/replace-infile-using-sed-and-make-a-backup-automatically' rel='bookmark' title='Replace infile using sed and make a backup automatically'>Replace infile using sed and make a backup automatically</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-make-shell-script-run-in-low-priority' rel='bookmark' title='How to make shell script run in low priority'>How to make shell script run in low priority</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to make desktop icons snap to grid on Mac OSX</p>
<p><strong>Answer:</strong></p>
<p>To make desktop icons on Mac OSX<strong> snap to grid</strong>, follow the steps below:</p>
<p>1. Click anywhere on the desktop</p>
<p>2. Select "<strong>Show View Options</strong>"</p>
<p>3. At the row <strong>"Arrange By"</strong>, select "<strong>Snap to Grid</strong>"</p>
<p>That's all what you need.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/make-a-file-executable-in-linux' rel='bookmark' title='Make a file executable in Linux'>Make a file executable in Linux</a></li>
<li><a href='http://www.linuxask.com/questions/replace-infile-using-sed-and-make-a-backup-automatically' rel='bookmark' title='Replace infile using sed and make a backup automatically'>Replace infile using sed and make a backup automatically</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-make-shell-script-run-in-low-priority' rel='bookmark' title='How to make shell script run in low priority'>How to make shell script run in low priority</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-make-desktop-icons-snap-to-grid-on-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suggested Mercurial .hgignore settings for XCode projects</title>
		<link>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects</link>
		<comments>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects#comments</comments>
		<pubDate>Sat, 26 Feb 2011 15:37:46 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mercurial]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2829</guid>
		<description><![CDATA[Suggested Mercurial .hgignore settings for XCode projects Answer: Save the following lines as .hgignore and put it under the root of your project root directory, Mercurial will ignore them automatically. ^build/* \.mode1v3 \.pbxuser \.DS_Store ^\.* Related posts: Adding the missing ignore function to Mercurial Clone an existing project using Mercurial Show ignored files in Mercurial
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial' rel='bookmark' title='Adding the missing ignore function to Mercurial'>Adding the missing ignore function to Mercurial</a></li>
<li><a href='http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial' rel='bookmark' title='Clone an existing project using Mercurial'>Clone an existing project using Mercurial</a></li>
<li><a href='http://www.linuxask.com/questions/show-ignored-files-in-mercurial' rel='bookmark' title='Show ignored files in Mercurial'>Show ignored files in Mercurial</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Suggested Mercurial .hgignore settings for XCode projects</p>
<p><strong>Answer:</strong></p>
<p>Save the following lines as <strong>.hgignore</strong> and put it under the root of your project root directory, <strong>Mercurial</strong> will ignore them automatically.</p>
<pre><code>^build/*
\.mode1v3
\.pbxuser
\.DS_Store
^\.*</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial' rel='bookmark' title='Adding the missing ignore function to Mercurial'>Adding the missing ignore function to Mercurial</a></li>
<li><a href='http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial' rel='bookmark' title='Clone an existing project using Mercurial'>Clone an existing project using Mercurial</a></li>
<li><a href='http://www.linuxask.com/questions/show-ignored-files-in-mercurial' rel='bookmark' title='Show ignored files in Mercurial'>Show ignored files in Mercurial</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Git in Mac using MacPort</title>
		<link>http://www.linuxask.com/questions/install-git-in-mac-using-macport</link>
		<comments>http://www.linuxask.com/questions/install-git-in-mac-using-macport#comments</comments>
		<pubDate>Tue, 25 Jan 2011 16:40:12 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2772</guid>
		<description><![CDATA[Install Git in Mac using MacPort Answer: To install Git in Mac using MacPort, following the method below: 1. Search if Git is available # port search git 2. You will found the package named "git-core", go ahead to install it # sudo port install git-core That's all. Related posts: Search for a software/package to <a href='http://www.linuxask.com/questions/install-git-in-mac-using-macport'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache' rel='bookmark' title='Search for a software/package to install using apt-cache'>Search for a software/package to install using apt-cache</a></li>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-aptitude' rel='bookmark' title='Search for a software/package to install using aptitude'>Search for a software/package to install using aptitude</a></li>
<li><a href='http://www.linuxask.com/questions/install-git-under-ubuntu' rel='bookmark' title='Install git under Ubuntu'>Install git under Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Install Git in Mac using MacPort</p>
<p><strong>Answer:</strong></p>
<p>To install <strong>Git </strong>in Mac using <strong><a href="http://www.macports.org/">MacPort</a></strong>, following the method below:</p>
<p>1. Search if Git is available</p>
<p><code># port search git</code></p>
<p>2. You will found the package named "<strong>git-core</strong>", go ahead to install it</p>
<p><code># sudo port install git-core</code></p>
<p>That's all.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-apt-cache' rel='bookmark' title='Search for a software/package to install using apt-cache'>Search for a software/package to install using apt-cache</a></li>
<li><a href='http://www.linuxask.com/questions/search-for-a-softwarepackage-to-install-using-aptitude' rel='bookmark' title='Search for a software/package to install using aptitude'>Search for a software/package to install using aptitude</a></li>
<li><a href='http://www.linuxask.com/questions/install-git-under-ubuntu' rel='bookmark' title='Install git under Ubuntu'>Install git under Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-git-in-mac-using-macport/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy the output from Mac OSX Terminal to clipboard</title>
		<link>http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard</link>
		<comments>http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:31:45 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac terminal]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1892</guid>
		<description><![CDATA[Copy the output from Mac OSX Terminal to clipboard Answer: To copy the output in Mac OSX Terminal to clipboard, you can use the the command pbcopy # date &#124; pbcopy The paste it into your favorite editor. Related posts: Opens the current folder in Finder in Mac OSX Terminal How to log console output <a href='http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/opens-the-current-folder-in-finder-in-mac-osx-terminal' rel='bookmark' title='Opens the current folder in Finder in Mac OSX Terminal'>Opens the current folder in Finder in Mac OSX Terminal</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-log-console-output-to-a-file' rel='bookmark' title='How to log console output to a file?'>How to log console output to a file?</a></li>
<li><a href='http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim' rel='bookmark' title='Set filename in terminal title in vim'>Set filename in terminal title in vim</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copy the output from Mac OSX Terminal to clipboard</p>
<p><strong>Answer:</strong></p>
<p>To copy the output in Mac OSX Terminal to clipboard, you can use the the command <strong>pbcopy</strong></p>
<p><code># date | pbcopy</code></p>
<p>The paste it into your favorite editor.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/opens-the-current-folder-in-finder-in-mac-osx-terminal' rel='bookmark' title='Opens the current folder in Finder in Mac OSX Terminal'>Opens the current folder in Finder in Mac OSX Terminal</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-log-console-output-to-a-file' rel='bookmark' title='How to log console output to a file?'>How to log console output to a file?</a></li>
<li><a href='http://www.linuxask.com/questions/set-filename-in-terminal-title-in-vim' rel='bookmark' title='Set filename in terminal title in vim'>Set filename in terminal title in vim</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/copy-the-output-from-mac-osx-terminal-to-clipboard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

