<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Linux Ask!</title>
	
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &amp; 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" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/linuxask" /><feedburner:info uri="linuxask" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><item>
		<title>Remove un-staged files or directories from Git repository</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/b0xld710TWI/remove-un-staged-files-or-directories-from-git-repository</link>
		<comments>http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository#comments</comments>
		<pubDate>Sat, 04 Feb 2012 05:57:59 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3689</guid>
		<description><![CDATA[Remove un-staged files or directories from Git repository Answer: To remove newly added files or directories under a Git repository (but un-staged yet), do: # git clean -fdn Check if the files/directories are really okay to remove. Then, execute the command again without the '-n' # git clean -fd Related posts: Import files and directories <a href='http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository'>[...]</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/list-files-under-a-directory-in-svn-repository' rel='bookmark' title='List files under a directory in SVN repository'>List files under a directory in SVN repository</a></li>
<li><a href='http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get' rel='bookmark' title='Remove downloaded archive files from apt-get'>Remove downloaded archive files from apt-get</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Remove un-staged files or directories from Git repository</p>
<p><strong>Answer:</strong></p>
<p>To remove newly added  files or directories under a Git repository (but un-staged yet), do:</p>
<p><code># git clean -fdn</code></p>
<p>Check if the files/directories are really okay to remove. Then, execute the command again without the '-n'</p>
<p><code># git clean -fd</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/list-files-under-a-directory-in-svn-repository' rel='bookmark' title='List files under a directory in SVN repository'>List files under a directory in SVN repository</a></li>
<li><a href='http://www.linuxask.com/questions/remove-downloaded-archive-files-from-apt-get' rel='bookmark' title='Remove downloaded archive files from apt-get'>Remove downloaded archive files from apt-get</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/b0xld710TWI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository</feedburner:origLink></item>
		<item>
		<title>Move cursor to the end of line in VIM</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/q-Yr3uoWaVI/move-cursor-to-the-end-of-line-in-vim</link>
		<comments>http://www.linuxask.com/questions/move-cursor-to-the-end-of-line-in-vim#comments</comments>
		<pubDate>Sun, 29 Jan 2012 15:37:25 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3656</guid>
		<description><![CDATA[Move cursor to the end of line in VIM Answer: To move to the end of a line in VIM, type $ You can also type "A" to append at end of the line. Related posts: Move cursor to the end of file in VIM Quickly open to file and position a cursor with vim <a href='http://www.linuxask.com/questions/move-cursor-to-the-end-of-line-in-vim'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/move-cursor-to-the-end-of-file-in-vim' rel='bookmark' title='Move cursor to the end of file in VIM'>Move cursor to the end of file in VIM</a></li>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-show-line-number-in-vi-vim' rel='bookmark' title='How to show line number in vi / vim?'>How to show line number in vi / vim?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Move cursor to the end of line in VIM</p>
<p><strong>Answer:</strong></p>
<p>To move to the end of a line in VIM, type </p>
<p><code>$</code></p>
<p>You can also type "A"  to append at end of the line.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/move-cursor-to-the-end-of-file-in-vim' rel='bookmark' title='Move cursor to the end of file in VIM'>Move cursor to the end of file in VIM</a></li>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-show-line-number-in-vi-vim' rel='bookmark' title='How to show line number in vi / vim?'>How to show line number in vi / vim?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/q-Yr3uoWaVI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/move-cursor-to-the-end-of-line-in-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/move-cursor-to-the-end-of-line-in-vim</feedburner:origLink></item>
		<item>
		<title>Convert all text in a file from upper-case to lower-case</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/ewCiKLioAXM/convert-all-text-in-a-file-from-upper-case-to-lower-case</link>
		<comments>http://www.linuxask.com/questions/convert-all-text-in-a-file-from-upper-case-to-lower-case#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:43:16 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3639</guid>
		<description><![CDATA[Convert all text in a file from upper-case to lower-case Answer: Just one command needed: # tr '[:upper:]' '[:lower:]' < input.txt Related posts: Case conversion of string in Linux Convert Windows text file to UNIX format without dos2unix Convert DOS/MAC to UNIX text file format converter
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/case-conversion-of-string-in-linux' rel='bookmark' title='Case conversion of string in Linux'>Case conversion of string in Linux</a></li>
<li><a href='http://www.linuxask.com/questions/convert-windows-text-file-to-unix-format-without-dos2unix' rel='bookmark' title='Convert Windows text file to UNIX format without dos2unix'>Convert Windows text file to UNIX format without dos2unix</a></li>
<li><a href='http://www.linuxask.com/questions/convert-dosmac-to-unix-text-file-format-converter' rel='bookmark' title='Convert DOS/MAC to UNIX text file format converter'>Convert DOS/MAC to UNIX text file format converter</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Convert all text in a file from upper-case to lower-case</p>
<p><strong>Answer:</strong></p>
<p>Just one command needed:</p>
<p><code># tr '[:upper:]' '[:lower:]' < input.txt </code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/case-conversion-of-string-in-linux' rel='bookmark' title='Case conversion of string in Linux'>Case conversion of string in Linux</a></li>
<li><a href='http://www.linuxask.com/questions/convert-windows-text-file-to-unix-format-without-dos2unix' rel='bookmark' title='Convert Windows text file to UNIX format without dos2unix'>Convert Windows text file to UNIX format without dos2unix</a></li>
<li><a href='http://www.linuxask.com/questions/convert-dosmac-to-unix-text-file-format-converter' rel='bookmark' title='Convert DOS/MAC to UNIX text file format converter'>Convert DOS/MAC to UNIX text file format converter</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/ewCiKLioAXM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/convert-all-text-in-a-file-from-upper-case-to-lower-case/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/convert-all-text-in-a-file-from-upper-case-to-lower-case</feedburner:origLink></item>
		<item>
		<title>Install bash completion for Mac OSX</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/_E82kkUW3EA/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><img src="http://feeds.feedburner.com/~r/linuxask/~4/_E82kkUW3EA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/install-bash-completion-for-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/install-bash-completion-for-mac-osx</feedburner:origLink></item>
		<item>
		<title>Move cursor to the end of file in VIM</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/HUOstOZ01vw/move-cursor-to-the-end-of-file-in-vim</link>
		<comments>http://www.linuxask.com/questions/move-cursor-to-the-end-of-file-in-vim#comments</comments>
		<pubDate>Mon, 23 Jan 2012 15:23:11 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3647</guid>
		<description><![CDATA[Move cursor to the end of file in VIM Answer: To move to the end of a file in VIM, type G Related posts: Quickly open to file and position a cursor with vim Move a directory in a subversion repository Move a long running job to background
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/move-a-directory-in-a-subversion-repository' rel='bookmark' title='Move a directory in a subversion repository'>Move a directory in a subversion repository</a></li>
<li><a href='http://www.linuxask.com/questions/move-a-long-running-job-to-background' rel='bookmark' title='Move a long running job to background'>Move a long running job to background</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Move cursor to the end of file in VIM</p>
<p><strong>Answer:</strong></p>
<p>To move to the end of a file in VIM, type </p>
<p><code>G</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/quickly-open-to-file-and-position-a-cursor-with-vim' rel='bookmark' title='Quickly open to file and position a cursor with vim'>Quickly open to file and position a cursor with vim</a></li>
<li><a href='http://www.linuxask.com/questions/move-a-directory-in-a-subversion-repository' rel='bookmark' title='Move a directory in a subversion repository'>Move a directory in a subversion repository</a></li>
<li><a href='http://www.linuxask.com/questions/move-a-long-running-job-to-background' rel='bookmark' title='Move a long running job to background'>Move a long running job to background</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/HUOstOZ01vw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/move-cursor-to-the-end-of-file-in-vim/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/move-cursor-to-the-end-of-file-in-vim</feedburner:origLink></item>
		<item>
		<title>Removed opened port in ufw</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/DSKEeVEtomA/removed-opened-port-in-ufw</link>
		<comments>http://www.linuxask.com/questions/removed-opened-port-in-ufw#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:47:08 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ufw]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3631</guid>
		<description><![CDATA[Removed opened port in ufw Answer: If you have opened a port using the ufw command in Ubuntu, but now you want to delete it, you can.. # sudo ufw delete allow 8080/tcp And then do a reload # # sudo ufw reload That's all. Related posts: Open a TCP port in Ubuntu&#8217;s ufw firewall <a href='http://www.linuxask.com/questions/removed-opened-port-in-ufw'>[...]</a>
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall' rel='bookmark' title='Open a TCP port in Ubuntu&#8217;s ufw firewall'>Open a TCP port in Ubuntu&#8217;s ufw firewall</a></li>
<li><a href='http://www.linuxask.com/questions/simple-port-forwarding-using-ssh' rel='bookmark' title='Simple port forwarding using SSH'>Simple port forwarding using SSH</a></li>
<li><a href='http://www.linuxask.com/questions/what-is-the-smtp-submission-port-587' rel='bookmark' title='What is the SMTP submission port 587?'>What is the SMTP submission port 587?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Removed opened port in ufw</p>
<p><strong>Answer:</strong></p>
<p>If you have opened a port using the ufw command in Ubuntu, but now you want to delete it, you can..</p>
<p><code> # sudo ufw delete allow 8080/tcp </code></p>
<p>And then do a reload</p>
<p><code># # sudo ufw reload</code></p>
<p>That's all.</p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/open-a-tcp-port-in-ubuntus-ufw-firewall' rel='bookmark' title='Open a TCP port in Ubuntu&#8217;s ufw firewall'>Open a TCP port in Ubuntu&#8217;s ufw firewall</a></li>
<li><a href='http://www.linuxask.com/questions/simple-port-forwarding-using-ssh' rel='bookmark' title='Simple port forwarding using SSH'>Simple port forwarding using SSH</a></li>
<li><a href='http://www.linuxask.com/questions/what-is-the-smtp-submission-port-587' rel='bookmark' title='What is the SMTP submission port 587?'>What is the SMTP submission port 587?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/DSKEeVEtomA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/removed-opened-port-in-ufw/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/removed-opened-port-in-ufw</feedburner:origLink></item>
		<item>
		<title>How to perform a reverse DNS lookup in Linux</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/UszWjqTx7yA/how-to-perform-a-reverse-dns-lookup-in-linux</link>
		<comments>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:48:42 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dns]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3617</guid>
		<description><![CDATA[How to perform a reverse DNS lookup in Linux Answer: To perform a reverse DNS lookup for a domain in Linux, you can use the dig command, e.g. # dig -x 8.8.8.8 ; DiG 9.7.0-P1 -x 8.8.8.8 ;; global options: +cmd ;; Got answer: ;; ->>HEADER
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-reverse-print-a-file' rel='bookmark' title='How to reverse print a file?'>How to reverse print a file?</a></li>
<li><a href='http://www.linuxask.com/questions/reverse-characters-on-each-line' rel='bookmark' title='Reverse characters on each line'>Reverse characters on each line</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-simple-calculations-in-linux-shell' rel='bookmark' title='How to perform simple calculations in Linux shell?'>How to perform simple calculations in Linux shell?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to perform a reverse DNS lookup in Linux</p>
<p><strong>Answer:</strong></p>
<p>To perform a  reverse DNS lookup for a domain in Linux, you can use the <strong>dig </strong>command, e.g.</p>
<pre><code># dig -x 8.8.8.8

; <<>> DiG 9.7.0-P1 <<>> -x 8.8.8.8
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 59808
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;8.8.8.8.in-addr.arpa.          IN      PTR

;; ANSWER SECTION:
8.8.8.8.in-addr.arpa.   86328   IN      PTR     google-public-dns-a.google.com.

..
</code></pre>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/how-to-reverse-print-a-file' rel='bookmark' title='How to reverse print a file?'>How to reverse print a file?</a></li>
<li><a href='http://www.linuxask.com/questions/reverse-characters-on-each-line' rel='bookmark' title='Reverse characters on each line'>Reverse characters on each line</a></li>
<li><a href='http://www.linuxask.com/questions/how-to-perform-simple-calculations-in-linux-shell' rel='bookmark' title='How to perform simple calculations in Linux shell?'>How to perform simple calculations in Linux shell?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/UszWjqTx7yA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/how-to-perform-a-reverse-dns-lookup-in-linux</feedburner:origLink></item>
		<item>
		<title>How to get the MD5 checksum of a file under Mac OSX</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/mbbCM4_7WN0/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><img src="http://feeds.feedburner.com/~r/linuxask/~4/mbbCM4_7WN0" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.linuxask.com/questions/how-to-get-the-md5-checksum-of-a-file-under-mac-osx</feedburner:origLink></item>
		<item>
		<title>How to uncompress a WAR file using command</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/CNjuc4F80q0/how-to-uncompress-a-war-file-using-command</link>
		<comments>http://www.linuxask.com/questions/how-to-uncompress-a-war-file-using-command#comments</comments>
		<pubDate>Tue, 10 Jan 2012 15:42:27 +0000</pubDate>
		<dc:creator>Linux Ask!</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3623</guid>
		<description><![CDATA[How to uncompress a WAR file using command Answer: To un-compress a Java Web Archives file (*.war), you can use the command # jar xvf my-app.war Related posts: Changing the default Java environment in Ubuntu Compress and decompress file using 7zip Determine file type using the file command
Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/changing-the-default-java-environment-in-ubuntu' rel='bookmark' title='Changing the default Java environment in Ubuntu'>Changing the default Java environment in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip' rel='bookmark' title='Compress and decompress file using 7zip'>Compress and decompress file using 7zip</a></li>
<li><a href='http://www.linuxask.com/questions/determine-file-type-using-the-file-command' rel='bookmark' title='Determine file type using the file command'>Determine file type using the file command</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to uncompress a WAR file using command</p>
<p><strong>Answer:</strong></p>
<p>To un-compress a Java Web Archives file (*.war), you can use the command</p>
<p><code># jar xvf my-app.war</code></p>
<p>Related posts:<ol>
<li><a href='http://www.linuxask.com/questions/changing-the-default-java-environment-in-ubuntu' rel='bookmark' title='Changing the default Java environment in Ubuntu'>Changing the default Java environment in Ubuntu</a></li>
<li><a href='http://www.linuxask.com/questions/compress-and-decompress-file-using-7zip' rel='bookmark' title='Compress and decompress file using 7zip'>Compress and decompress file using 7zip</a></li>
<li><a href='http://www.linuxask.com/questions/determine-file-type-using-the-file-command' rel='bookmark' title='Determine file type using the file command'>Determine file type using the file command</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/linuxask/~4/CNjuc4F80q0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-uncompress-a-war-file-using-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/how-to-uncompress-a-war-file-using-command</feedburner:origLink></item>
		<item>
		<title>Import private key into Mac’s KeyChain</title>
		<link>http://feedproxy.google.com/~r/linuxask/~3/zsar5TPtxLU/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><img src="http://feeds.feedburner.com/~r/linuxask/~4/zsar5TPtxLU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/import-private-key-into-macs-keychain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.linuxask.com/questions/import-private-key-into-macs-keychain</feedburner:origLink></item>
	</channel>
</rss>

