<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title><![CDATA[All commands]]></title>
    <link>http://www.commandlinefu.com/commands/browse/rss</link>
    <description><![CDATA[A repository for the most elegant and useful UNIX commands.  Great commands can be shared, discussed and voted on to provide a comprehensive resource for working from the command-line]]></description>
    <pubDate>Tue, 21 May 2013 08:53:16 +0000</pubDate>
    <generator>Zend Framework Zend_Feed</generator>
    <language>en-us</language>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Command-line-fu" /><feedburner:info uri="command-line-fu" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
      <title><![CDATA[List mp3 files with less than 320 kbps bitrate.]]></title>
      <author>infojunkie (http://thereisamoduleforthat.com)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/EizoBvd-eGA/list-mp3-files-with-less-than-320-kbps-bitrate.</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12354/list-mp3-files-with-less-than-320-kbps-bitrate.</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ find -name '*.mp3' -exec mp3info {} -p &amp;quot;%F: %r kbps\n&amp;quot; \;  | sort | sed '/320 kbps/d'&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12354/list-mp3-files-with-less-than-320-kbps-bitrate."&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/infojunkie"&gt;View all commands by &lt;strong&gt;infojunkie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/EizoBvd-eGA" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 21 May 2013 04:46:55 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12354/list-mp3-files-with-less-than-320-kbps-bitrate.</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12354/list-mp3-files-with-less-than-320-kbps-bitrate.</feedburner:origLink></item>
    <item>
      <title><![CDATA[Recursively search and replace old with new string, inside every instance of filename.ext]]></title>
      <author>eddieb</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/j5-gR4E_Vms/recursively-search-and-replace-old-with-new-string-inside-every-instance-of-filename.ext</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12353/recursively-search-and-replace-old-with-new-string-inside-every-instance-of-filename.ext</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ find . -type f -name filename.exe -exec sed -i &amp;quot;s/oldstring/oldstring/g&amp;quot; {} +;&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;This is a slightly modified version of &lt;a href="http://www.commandlinefu.com/commands/view/4283/recursive-search-and-replace-old-with-new-string-inside-files" rel="nofollow"&gt;http://www.commandlinefu.com/commands/view/4283/recursive-search-and-replace-old-with-new-string-inside-files&lt;/a&gt; (which did not work due to incorrect syntax) with the added option to sed inside only files named filename.ext&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12353/recursively-search-and-replace-old-with-new-string-inside-every-instance-of-filename.ext"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/eddieb"&gt;View all commands by &lt;strong&gt;eddieb&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/j5-gR4E_Vms" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 20 May 2013 19:17:10 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12353/recursively-search-and-replace-old-with-new-string-inside-every-instance-of-filename.ext</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12353/recursively-search-and-replace-old-with-new-string-inside-every-instance-of-filename.ext</feedburner:origLink></item>
    <item>
      <title><![CDATA[Get a list of Mageia Linux mirrors providing rsync connectivity for Mageia 3 release]]></title>
      <author>mpb</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/6A1TTMlpzic/get-a-list-of-mageia-linux-mirrors-providing-rsync-connectivity-for-mageia-3-release</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12352/get-a-list-of-mageia-linux-mirrors-providing-rsync-connectivity-for-mageia-3-release</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ url=http://mirrors.mageia.org/api/mageia.3.i586.list; wget -q ${url} -O - | grep rsync:&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;Need to find a Mageia Linux mirror server providing Mageia 3 via rsync?&lt;/p&gt;
&lt;p&gt;Modify the "url=" string for the version you want. This shows i586 which is the 32bit version.&lt;/p&gt;
&lt;p&gt;If you want the 64bit version it is:&lt;/p&gt;
&lt;p&gt;url=&lt;a href="http://mirrors.mageia.org/api/mageia.3.x86_64.list;" rel="nofollow"&gt;http://mirrors.mageia.org/api/mageia.3.x86_64.list;&lt;/a&gt; wget -q ${url} -O - | grep rsync:&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12352/get-a-list-of-mageia-linux-mirrors-providing-rsync-connectivity-for-mageia-3-release"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/mpb"&gt;View all commands by &lt;strong&gt;mpb&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/6A1TTMlpzic" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 20 May 2013 16:19:05 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12352/get-a-list-of-mageia-linux-mirrors-providing-rsync-connectivity-for-mageia-3-release</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12352/get-a-list-of-mageia-linux-mirrors-providing-rsync-connectivity-for-mageia-3-release</feedburner:origLink></item>
    <item>
      <title><![CDATA[Run the built in PHP-server in current folder]]></title>
      <author>VictorBjelkholm</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/5aEElkpt0KQ/run-the-built-in-php-server-in-current-folder</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12350/run-the-built-in-php-server-in-current-folder</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ php -S 127.0.0.1 8080&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;You must have PHP 5.4.0 or later to be able to run the built in server.&lt;/p&gt;
&lt;p&gt;This web server is designed for developmental purposes only, and should not be used in production.&lt;/p&gt;
&lt;p&gt;URI requests are served from the current working directory where PHP was started, unless the -t option is used to specify an explicit document root. If a URI request does not specify a file, then either index.php or index.html in the given directory are returned. If neither file exists, then a 404 response code is returned.&lt;/p&gt;
&lt;p&gt;If a PHP file is given on the command line when the web server is started it is treated as a "router" script. The script is run at the start of each HTTP request. If this script returns FALSE, then the requested resource is returned as-is. Otherwise the script's output is returned to the browser.&lt;/p&gt;
&lt;p&gt;Standard MIME types are returned for files with extensions: .css, .gif, .htm, .html, .jpe, .jpeg, .jpg, .js, .png, .svg, and .txt. The .htm and .svg extensions are recognized from PHP 5.4.4 onwards.&lt;/p&gt;
&lt;p&gt;More information here: &lt;a href="http://php.net/manual/en/features.commandline.webserver.php" rel="nofollow"&gt;http://php.net/manual/en/features.commandline.webserver.php&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12350/run-the-built-in-php-server-in-current-folder"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/VictorBjelkholm"&gt;View all commands by &lt;strong&gt;VictorBjelkholm&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/5aEElkpt0KQ" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 19 May 2013 11:23:17 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12350/run-the-built-in-php-server-in-current-folder</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12350/run-the-built-in-php-server-in-current-folder</feedburner:origLink></item>
    <item>
      <title><![CDATA[Avoid killing the X server with CTRL+C on the tty it was started from]]></title>
      <author>dash</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/raTT_z_RaLA/avoid-killing-the-x-server-with-ctrlc-on-the-tty-it-was-started-from</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12349/avoid-killing-the-x-server-with-ctrlc-on-the-tty-it-was-started-from</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ startx &amp;amp;! exit&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12349/avoid-killing-the-x-server-with-ctrlc-on-the-tty-it-was-started-from"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/dash"&gt;View all commands by &lt;strong&gt;dash&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/raTT_z_RaLA" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 18 May 2013 21:41:16 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12349/avoid-killing-the-x-server-with-ctrlc-on-the-tty-it-was-started-from</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12349/avoid-killing-the-x-server-with-ctrlc-on-the-tty-it-was-started-from</feedburner:origLink></item>
    <item>
      <title><![CDATA[Create a secure password using /dev/urandom and sha256]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/rSHQMzGh3aU/create-a-secure-password-using-devurandom-and-sha256</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12332/create-a-secure-password-using-devurandom-and-sha256</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ pwgen -Bs 10 1&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12332/create-a-secure-password-using-devurandom-and-sha256"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/rSHQMzGh3aU" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 16 May 2013 10:50:00 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12332/create-a-secure-password-using-devurandom-and-sha256</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12332/create-a-secure-password-using-devurandom-and-sha256</feedburner:origLink></item>
    <item>
      <title><![CDATA[Retry the previous command until it exits successfully]]></title>
      <author>unixmonkey21806</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/QgihexzTn08/retry-the-previous-command-until-it-exits-successfully</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12327/retry-the-previous-command-until-it-exits-successfully</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ until !!; do :; done&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12327/retry-the-previous-command-until-it-exits-successfully"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/unixmonkey21806"&gt;View all commands by &lt;strong&gt;unixmonkey21806&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/QgihexzTn08" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 14 May 2013 18:08:54 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12327/retry-the-previous-command-until-it-exits-successfully</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12327/retry-the-previous-command-until-it-exits-successfully</feedburner:origLink></item>
    <item>
      <title><![CDATA[Inspect content of a tar file with vim]]></title>
      <author>redy</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/VUO9FbX8o_8/inspect-content-of-a-tar-file-with-vim</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12326/inspect-content-of-a-tar-file-with-vim</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ vim anything.tar&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12326/inspect-content-of-a-tar-file-with-vim"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/redy"&gt;View all commands by &lt;strong&gt;redy&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/VUO9FbX8o_8" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 14 May 2013 08:20:16 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12326/inspect-content-of-a-tar-file-with-vim</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12326/inspect-content-of-a-tar-file-with-vim</feedburner:origLink></item>
    <item>
      <title><![CDATA[Use Vim to convert text to HTML.]]></title>
      <author>RanyAlbeg</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/XKqnuV-MlcY/use-vim-to-convert-text-to-html.</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12318/use-vim-to-convert-text-to-html.</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ vimhtml() { [[ -f &amp;quot;$1&amp;quot; ]] || return 1; vim +'syn on | run! syntax/2html.vim | wq | q' &amp;quot;$1&amp;quot;;}&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;``vimhtml somefile.txt`` will open vim for the HTML convertion and close it immediately after its done, leaving you with somefile.html which you can later use in your website or whatever.&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12318/use-vim-to-convert-text-to-html."&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/RanyAlbeg"&gt;View all commands by &lt;strong&gt;RanyAlbeg&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/XKqnuV-MlcY" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 12 May 2013 19:30:51 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12318/use-vim-to-convert-text-to-html.</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12318/use-vim-to-convert-text-to-html.</feedburner:origLink></item>
    <item>
      <title><![CDATA[Amplify movie playback]]></title>
      <author>hendry (http://hendry.iki.fi)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/0GBz6r4tEg0/amplify-movie-playback</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12317/amplify-movie-playback</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ mplayer -af volume=10.1:0 $movie&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;If a movie is too hard to hear, try the above command to make it louder.&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12317/amplify-movie-playback"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/hendry"&gt;View all commands by &lt;strong&gt;hendry&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/0GBz6r4tEg0" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 11 May 2013 20:47:50 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12317/amplify-movie-playback</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12317/amplify-movie-playback</feedburner:origLink></item>
    <item>
      <title><![CDATA[convert a string from lower case into uppercase]]></title>
      <author>eastwind</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/IO0EkZejV5I/convert-a-string-from-lower-case-into-uppercase</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12316/convert-a-string-from-lower-case-into-uppercase</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ echo lowercaseword  | tr  '[a-z]'   '[A-Z]'&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12316/convert-a-string-from-lower-case-into-uppercase"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/eastwind"&gt;View all commands by &lt;strong&gt;eastwind&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/IO0EkZejV5I" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 11 May 2013 11:08:37 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12316/convert-a-string-from-lower-case-into-uppercase</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12316/convert-a-string-from-lower-case-into-uppercase</feedburner:origLink></item>
    <item>
      <title><![CDATA[Put files back together after encrypted with tar and ccrypt]]></title>
      <author>symgryph</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/G7FAdcDpWOc/put-files-back-together-after-encrypted-with-tar-and-ccrypt</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12314/put-files-back-together-after-encrypted-with-tar-and-ccrypt</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ cat file.gz.cpt *[a-z] | ccdecrypt -k yoursecretpassword | tar -xzf -&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12314/put-files-back-together-after-encrypted-with-tar-and-ccrypt"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/symgryph"&gt;View all commands by &lt;strong&gt;symgryph&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/G7FAdcDpWOc" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 10 May 2013 12:44:12 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12314/put-files-back-together-after-encrypted-with-tar-and-ccrypt</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12314/put-files-back-together-after-encrypted-with-tar-and-ccrypt</feedburner:origLink></item>
    <item>
      <title><![CDATA[encrypt, split and get ready for dvd a large file via tar and ccrypt]]></title>
      <author>symgryph</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/kOSi1IgKhYg/encrypt-split-and-get-ready-for-dvd-a-large-file-via-tar-and-ccrypt</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12313/encrypt-split-and-get-ready-for-dvd-a-large-file-via-tar-and-ccrypt</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ tar czf - /directory/to/tar | ccrypt -k yourpassword | split -b50m - /final/encrypted.cpt&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12313/encrypt-split-and-get-ready-for-dvd-a-large-file-via-tar-and-ccrypt"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/symgryph"&gt;View all commands by &lt;strong&gt;symgryph&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/kOSi1IgKhYg" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 10 May 2013 12:42:47 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12313/encrypt-split-and-get-ready-for-dvd-a-large-file-via-tar-and-ccrypt</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12313/encrypt-split-and-get-ready-for-dvd-a-large-file-via-tar-and-ccrypt</feedburner:origLink></item>
    <item>
      <title><![CDATA[The awesome ping / traceroute combination]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/fQkdQ5T7AnE/the-awesome-ping-traceroute-combination</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12312/the-awesome-ping-traceroute-combination</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ mtr &amp;lt;URL&amp;gt;&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;In the sample output I used google.com.&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12312/the-awesome-ping-traceroute-combination"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/fQkdQ5T7AnE" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 10 May 2013 09:48:23 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12312/the-awesome-ping-traceroute-combination</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12312/the-awesome-ping-traceroute-combination</feedburner:origLink></item>
    <item>
      <title><![CDATA[Create a git repository]]></title>
      <author>batandwa (http://batandwa.me)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/-tCjK2n22CE/create-a-git-repository</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12311/create-a-git-repository</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ git-createrepo() { repos_path='/srv/git/'; mkdir $repos_path$1; cd $repos_path$1;   git init --bare;   echo &amp;quot;Repository location: ssh://$USER@`cat /etc/HOSTNAME``pwd`&amp;quot;; cd -; }&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;Creates a git repository in a predefined location.&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12311/create-a-git-repository"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/batandwa"&gt;View all commands by &lt;strong&gt;batandwa&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/-tCjK2n22CE" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 21:44:24 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12311/create-a-git-repository</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12311/create-a-git-repository</feedburner:origLink></item>
    <item>
      <title><![CDATA[Debug how files are being accessed by a process]]></title>
      <author>hendry (http://hendry.iki.fi)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/rmajCuM3AOs/debug-how-files-are-being-accessed-by-a-process</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12310/debug-how-files-are-being-accessed-by-a-process</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ inotifywait -m -r .&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;Instead of looking through `lsof` results, use inotifywait!&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12310/debug-how-files-are-being-accessed-by-a-process"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/hendry"&gt;View all commands by &lt;strong&gt;hendry&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/rmajCuM3AOs" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 16:14:25 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12310/debug-how-files-are-being-accessed-by-a-process</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12310/debug-how-files-are-being-accessed-by-a-process</feedburner:origLink></item>
    <item>
      <title><![CDATA[Poll and print end of lates modified file]]></title>
      <author>batandwa (http://batandwa.me)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/3OomE-Yg8w0/poll-and-print-end-of-lates-modified-file</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12308/poll-and-print-end-of-lates-modified-file</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ watch 'ls -tr1 | tail -n1 | xargs tail'&lt;/code&gt;
&lt;div style=""&gt;&lt;p&gt;Watches for file modifications in the current directory and tails the file.&lt;/p&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12308/poll-and-print-end-of-lates-modified-file"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/batandwa"&gt;View all commands by &lt;strong&gt;batandwa&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/3OomE-Yg8w0" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 11:37:59 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12308/poll-and-print-end-of-lates-modified-file</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12308/poll-and-print-end-of-lates-modified-file</feedburner:origLink></item>
    <item>
      <title><![CDATA[Print file content in reverse order]]></title>
      <author>andreasS (http://www.fam.tuwien.ac.at/~schamane/)</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/NGxRcQIfSEE/print-file-content-in-reverse-order</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12307/print-file-content-in-reverse-order</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ tac [FILE]&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12307/print-file-content-in-reverse-order"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/andreasS"&gt;View all commands by &lt;strong&gt;andreasS&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/NGxRcQIfSEE" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 09:19:51 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12307/print-file-content-in-reverse-order</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12307/print-file-content-in-reverse-order</feedburner:origLink></item>
    <item>
      <title><![CDATA[Copy all images to external hard-drive]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/4UhEl4boMf0/copy-all-images-to-external-hard-drive</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12306/copy-all-images-to-external-hard-drive</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ ls *.jpg | xargs -n1 -i cp {} /external-hard-drive/directory&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12306/copy-all-images-to-external-hard-drive"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/4UhEl4boMf0" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:33:01 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12306/copy-all-images-to-external-hard-drive</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12306/copy-all-images-to-external-hard-drive</feedburner:origLink></item>
    <item>
      <title><![CDATA[Open a file using vim in read only (like less)]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/WmTltPq5ogc/open-a-file-using-vim-in-read-only-like-less</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12305/open-a-file-using-vim-in-read-only-like-less</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ vim -R /etc/passwd&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12305/open-a-file-using-vim-in-read-only-like-less"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/WmTltPq5ogc" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:28:32 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12305/open-a-file-using-vim-in-read-only-like-less</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12305/open-a-file-using-vim-in-read-only-like-less</feedburner:origLink></item>
    <item>
      <title><![CDATA[Go to a specified line in a file]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/bEgYwHJHgK8/go-to-a-specified-line-in-a-file</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12304/go-to-a-specified-line-in-a-file</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ vim +143 filename.txt&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12304/go-to-a-specified-line-in-a-file"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/bEgYwHJHgK8" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:24:28 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12304/go-to-a-specified-line-in-a-file</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12304/go-to-a-specified-line-in-a-file</feedburner:origLink></item>
    <item>
      <title><![CDATA[Remove duplicate lines using awk]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/nQTxKl8GG8U/remove-duplicate-lines-using-awk</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12303/remove-duplicate-lines-using-awk</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ awk '!($0 in array) { array[$0]; print }' temp&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12303/remove-duplicate-lines-using-awk"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/nQTxKl8GG8U" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:23:30 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12303/remove-duplicate-lines-using-awk</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12303/remove-duplicate-lines-using-awk</feedburner:origLink></item>
    <item>
      <title><![CDATA[Print file content in reverse order]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/4qjatJX-IbY/print-file-content-in-reverse-order</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12302/print-file-content-in-reverse-order</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ sed -n '1!G;h;$p' techie.txt&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12302/print-file-content-in-reverse-order"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/4qjatJX-IbY" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:22:36 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12302/print-file-content-in-reverse-order</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12302/print-file-content-in-reverse-order</feedburner:origLink></item>
    <item>
      <title><![CDATA[Execute commands on files found by the find command]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/lWbo3Rx4ZBI/execute-commands-on-files-found-by-the-find-command</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12301/execute-commands-on-files-found-by-the-find-command</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ find -iname &amp;quot;MyCProgram.c&amp;quot; -exec md5sum {} \;&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12301/execute-commands-on-files-found-by-the-find-command"&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/lWbo3Rx4ZBI" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:21:18 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12301/execute-commands-on-files-found-by-the-find-command</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12301/execute-commands-on-files-found-by-the-find-command</feedburner:origLink></item>
    <item>
      <title><![CDATA[Print the matched line, along with the 3 lines after it.]]></title>
      <author>techie</author>
      <link>http://feedproxy.google.com/~r/Command-line-fu/~3/iwEdigo3trA/print-the-matched-line-along-with-the-3-lines-after-it.</link>
      <guid isPermaLink="false">http://www.commandlinefu.com/commands/view/12300/print-the-matched-line-along-with-the-3-lines-after-it.</guid>
      <description>&lt;code style="padding:5px; font-family:monospace; font-size:12pt"&gt;$ grep -A 3 -i &amp;quot;example&amp;quot; demo_text&lt;/code&gt;
&lt;div style=""&gt;&lt;/div&gt;
&lt;ul style="list-style:none; padding: 0; margin: 0"&gt;
    &lt;li&gt;&lt;a href="http://www.commandlinefu.com/commands/view/12300/print-the-matched-line-along-with-the-3-lines-after-it."&gt;View this command to comment, vote or add to favourites&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/commands/by/techie"&gt;View all commands by &lt;strong&gt;techie&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://www.commandlinefu.com"&gt;&lt;img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;by David Winterbottom (&lt;a href="http://codeinthehole.com"&gt;codeinthehole.com&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Command-line-fu/~4/iwEdigo3trA" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 May 2013 08:20:31 +0000</pubDate>
      <comments>http://www.commandlinefu.com/commands/view/12300/print-the-matched-line-along-with-the-3-lines-after-it.</comments>
    <feedburner:origLink>http://www.commandlinefu.com/commands/view/12300/print-the-matched-line-along-with-the-3-lines-after-it.</feedburner:origLink></item>
  </channel>
</rss>
