<?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>Bob Droog &#187; bash</title>
	<atom:link href="http://www.bobdroog.nl/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bobdroog.nl</link>
	<description>My life in this crazy world.</description>
	<lastBuildDate>Thu, 24 Feb 2011 01:02:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Five ways to backup your Linux Computer or Server using bash.</title>
		<link>http://www.bobdroog.nl/2009/12/02/five-ways-to-backup-your-linux-computer-or-server-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/12/02/five-ways-to-backup-your-linux-computer-or-server-using-bash/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 14:02:02 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[5+]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[backup computer]]></category>
		<category><![CDATA[backup linux pc]]></category>
		<category><![CDATA[backup linux server]]></category>
		<category><![CDATA[backup linux system using dd]]></category>
		<category><![CDATA[backup linux system using dump]]></category>
		<category><![CDATA[backup linux system using tar]]></category>
		<category><![CDATA[backup my centos system]]></category>
		<category><![CDATA[backup my fedora system]]></category>
		<category><![CDATA[backup my red hat system]]></category>
		<category><![CDATA[backup server]]></category>
		<category><![CDATA[backup unix]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[easy way to create backups from my linux pc]]></category>
		<category><![CDATA[easy way to create backups from my linux server]]></category>
		<category><![CDATA[easy way to create backups from my pc]]></category>
		<category><![CDATA[easy way to create backups from my server]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[five]]></category>
		<category><![CDATA[how to backup linux system using dd]]></category>
		<category><![CDATA[how to backup linux system using tar]]></category>
		<category><![CDATA[how to backup my linux computer]]></category>
		<category><![CDATA[how to backup my linux pc]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1338</guid>
		<description><![CDATA[Using &#8220;DD&#8221; Make a backup of a local hard disk on remote host via ssh. user@server:$ dd bs=1M if=/dev/hda &#124; gzip &#124; ssh user@ip_addr 'dd of=hda.gz' Backup content of the hard drive to a file. user@server:$ dd if=/dev/sda of=/tmp/file1 Make a copy of MBR (Master Boot Record) to floppy. user@server:$ dd if=/dev/hda of=/dev/fd0 bs=512 count=1 [...]]]></description>
			<content:encoded><![CDATA[<h3>Using &#8220;DD&#8221;</h3>
<p>Make a backup of a local hard disk on remote host via ssh.</p>

<div class="wp-terminal">user@server:$ dd bs=1M if=/dev/hda | gzip | ssh user@ip_addr 'dd of=hda.gz'<br/></div>

<p>Backup content of the hard drive to a file.</p>

<div class="wp-terminal">user@server:$ dd if=/dev/sda of=/tmp/file1<br/></div>

<p>Make a copy of MBR (Master Boot Record) to floppy.</p>

<div class="wp-terminal">user@server:$ dd if=/dev/hda of=/dev/fd0 bs=512 count=1<br/></div>

<p>Restore MBR from backup copy saved to floppy.</p>

<div class="wp-terminal">user@server:$ dd if=/dev/fd0 of=/dev/hda bs=512 count=1<br/></div>

<h6></h6>
<h3>Using &#8220;Dump&#8221;</h3>
<p>Make a full backup of directory &#8216;/home&#8217;.</p>

<div class="wp-terminal">user@server:$ dump -0aj -f /tmp/home0.bak /home<br/></div>

<p>Make a incremental backup of directory &#8216;/home&#8217;</p>

<div class="wp-terminal">user@server:$ dump -1aj -f /tmp/home0.bak /home<br/></div>

<p>Restoring a backup interactively.</p>

<div class="wp-terminal">user@server:$ restore -if /tmp/home0.bak<br/></div>

<h6></h6>
<h3>Using &#8220;Rsync&#8221;</h3>
<p>Synchronization between directories.</p>

<div class="wp-terminal">user@server:$ rsync -rogpav --delete /home /tmp<br/></div>

<p>Rsync via SSH tunnel.</p>

<div class="wp-terminal">user@server:$ rsync -rogpav -e ssh --delete /home ip_address:/tmp<br/></div>

<p>Synchronize a local directory with a remote directory via ssh and compression.</p>

<div class="wp-terminal">user@server:$ rsync -az -e ssh --delete ip_addr:/home/public /home/local<br/></div>

<p>Synchronize a remote directory with a local directory via ssh and compression.</p>

<div class="wp-terminal">user@server:$ rsync -az -e ssh --delete /home/local ip_addr:/home/public<br/></div>

<h6></h6>
<h3>Using &#8220;tar&#8221;</h3>
<p>Make a incremental backup of directory &#8216;/home/user&#8217;</p>

<div class="wp-terminal">user@server:$ tar -Puf backup.tar /home/user<br/></div>

<p>For more or better ways to backup your system using tar <a href="http://www.bobdroog.nl/2009/11/11/easy-full-server-backup-using-tar-in-bash/"><strong>look here</strong></a>.</p>
<h6></h6>
<h3>Using &#8220;SSH&#8221;</h3>
<p>Copy content of a directory on remote directory via ssh.</p>

<div class="wp-terminal">user@server:$ ( cd /tmp/local/ && tar c . ) | ssh -C user@ip_addr 'cd /home/share/ && tar x -p'<br/></div>

<p>Copy a local directory on remote directory via ssh.</p>

<div class="wp-terminal">user@server:$ ( tar c /home ) | ssh -C user@ip_addr 'cd /home/backup-home && tar x -p' <br/></div>

<p>Local copy preserving permits and links from a directory to another.</p>

<div class="wp-terminal">user@server:$ tar cf - . | (cd /tmp/backup ; tar xf - )<br/></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/12/02/five-ways-to-backup-your-linux-computer-or-server-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add overlay .png image to video as logo using bash?</title>
		<link>http://www.bobdroog.nl/2009/12/02/how-to-add-overlay-png-image-to-video-as-logo-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/12/02/how-to-add-overlay-png-image-to-video-as-logo-using-bash/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 13:01:47 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[.mpeg]]></category>
		<category><![CDATA[.mpg]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[add logo to own movie]]></category>
		<category><![CDATA[add logo to own video]]></category>
		<category><![CDATA[add overlay image to movie]]></category>
		<category><![CDATA[add overlay image to video]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[convert movie with logo]]></category>
		<category><![CDATA[convert movie with your logo]]></category>
		<category><![CDATA[convert own movie with logo]]></category>
		<category><![CDATA[convert own video with logo]]></category>
		<category><![CDATA[convert video to movie with logo]]></category>
		<category><![CDATA[convert video with logo]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to add image to video]]></category>
		<category><![CDATA[how to add logo to video using terminal]]></category>
		<category><![CDATA[how to convert movie so it has a logo]]></category>
		<category><![CDATA[how to convert video so it has logo]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[movie logo]]></category>
		<category><![CDATA[movie with logo]]></category>
		<category><![CDATA[overlay]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[use your own logo on a movie]]></category>
		<category><![CDATA[video logo]]></category>
		<category><![CDATA[watermark]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1321</guid>
		<description><![CDATA[Using this command you can create/convert a video with your own chosen logo. Have fun. user@server:$ ffmpeg -i movie.mpg -vhook '/usr/lib/vhook/watermark.so -f overlay.png -m 1 -t 222222' -an mm.flv]]></description>
			<content:encoded><![CDATA[<p>Using this command you can create<strong>/</strong>convert a video with your own chosen logo. Have fun.</p>

<div class="wp-terminal">user@server:$ ffmpeg -i movie.mpg -vhook '/usr/lib/vhook/watermark.so -f overlay.png -m 1 -t 222222' -an mm.flv<br/></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/12/02/how-to-add-overlay-png-image-to-video-as-logo-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to update your twitter status in linux using bash?</title>
		<link>http://www.bobdroog.nl/2009/12/02/how-to-update-your-twitter-status-in-linux-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/12/02/how-to-update-your-twitter-status-in-linux-using-bash/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 12:38:49 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to update twitter status with command]]></category>
		<category><![CDATA[how to update twitter using bash]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[update twitter in linux]]></category>
		<category><![CDATA[update twitter status in linux]]></category>
		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1290</guid>
		<description><![CDATA[Updating your twitter status using the bash SHell in Linux is easier then you may think, you can update your status using &#8220;curl&#8220;, curl is a tool to transfer data from or to a server. All you have to do is execute this command showed underneath. This will transfer the status data to the twitter [...]]]></description>
			<content:encoded><![CDATA[<p>Updating your twitter status using the bash SHell in Linux is easier then you may think, you can update your status using &#8220;<strong>curl</strong>&#8220;, curl is a tool to transfer data from or to a server. All you have to do is execute this command showed underneath. This will transfer the status data to the twitter site using the <strong>Twitter API</strong>.</p>

<div class="wp-terminal">user@server:$ curl -u user:pass -d status=”Tweeting from the shell” http://twitter.com/statuses/update.xml<br/></div>

<p>But of course, you don&#8217;t want to be typing all that every time you want to update your twitter status. So I found <a href="http://binnyva.blogspot.com/2007/03/using-twitter-part-1-command-line.html" target="_blank"><strong>this website</strong></a> which has a executable twitter bash script.</p>

<div class="wp-terminal">user@server:$ curl --basic --user "user:password" --data-ascii "status=`echo $@|tr ' ' '+'`" "http://twitter.com/statuses/update.json"<br/></div>

<p>Replace the <strong>user</strong> and <strong>password</strong> with your twitter user id and password. Now save the text to a file called &#8216;<strong>twitter</strong>&#8216; and give the file execute permission. Put this file in any folder in your path. If you want to use this script everywhere on the server make sure it&#8217;s located in <strong>/usr/local/bin or ~/bin</strong>. If you are a user on the server, you may just create the file in your <strong>~/user</strong> folder.</p>
<h3>Now, how to use the script?</h3>
<p>If you have created the twitter file in <strong>/usr/local/bin or ~/bin</strong> you may use this command anywhere you are in the server.</p>

<div class="wp-terminal">user@server:$ twitter Testing and using Twitter CLI.<br/></div>

<p>For best results, enclose the message within quotes. This will prevent problems when using wild card characters like &#8216;?&#8217;</p>

<div class="wp-terminal">user@server:$ twitter "Testing and using Twitter CLI."<br/></div>

<p>And if have created the twitter file in your <strong>~/user</strong> directory, make sure you are in the <strong>same folder</strong> as the file and then you may use this command.</p>

<div class="wp-terminal">user@server:$ ./twitter "Testing and using Twitter CLI."<br/></div>

<h3>Not working?</h3>
<p>Did you make sure the file has executable rights?</p>

<div class="wp-terminal">user@server:$ chmod +x twitter<br/></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/12/02/how-to-update-your-twitter-status-in-linux-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to unrar multiple .rar files using bash?</title>
		<link>http://www.bobdroog.nl/2009/11/28/how-to-unrar-multiple-rar-files-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/11/28/how-to-unrar-multiple-rar-files-using-bash/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 13:14:37 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[how to unpack .rar files]]></category>
		<category><![CDATA[how to unpack .rar files using bash]]></category>
		<category><![CDATA[how to unrar .rar files]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[rar]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[unpack .rar files]]></category>
		<category><![CDATA[unpack .rar files in linux]]></category>
		<category><![CDATA[unrar]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum update]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1252</guid>
		<description><![CDATA[You might need the package: unrar You can check your server using the following command if you have already installed it or not. user@server:$ rpm -q unrar If nothing shows up, install the package unrar. If you are using a Linux OS which uses yum update you can use the following command to install it. [...]]]></description>
			<content:encoded><![CDATA[<p>You might need the package: <em><strong>unrar</strong></em></p>
<p>You can check your server using the following command if you have already installed it or not.</p>

<div class="wp-terminal">user@server:$ rpm -q unrar<br/></div>

<p>If nothing shows up, install the package unrar. If you are using a Linux OS which uses <strong>yum update</strong> you can use the following command to install it.</p>

<div class="wp-terminal">user@server:$ yum install unrar<br/></div>

<p>If that does not work for you, you can simply install it manually using the next commands.</p>

<div class="wp-terminal">user@server:$ wget http://www.rarlab.com/rar/unrar-3.7.7-centos.gz<br/>gzip -d unrar-3.7.7-centos.gz<br/>chmod +x unrar-3.7.7-centos<br/>cp unrar-3.7.7-centos /usr/bin/unrar # Need to do this as admin<br/></div>

<p>When that is all done, we can start using unrar. If you want to unrar multiple .rar files at once, you may use this command.</p>

<div class="wp-terminal">user@server:$ find -type f -name '*.rar' -exec unrar x {} \;<br/></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/11/28/how-to-unrar-multiple-rar-files-using-bash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Schedule Downloads using bash?</title>
		<link>http://www.bobdroog.nl/2009/11/28/how-to-schedule-downloads-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/11/28/how-to-schedule-downloads-using-bash/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 12:58:53 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to schedule downloads in linux]]></category>
		<category><![CDATA[how to schedule downloads using bash]]></category>
		<category><![CDATA[how to schedule downloads using putty]]></category>
		<category><![CDATA[how to schedule downloads using ssh]]></category>
		<category><![CDATA[how to schedule downloads using terminal]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[schedule]]></category>
		<category><![CDATA[schedule downloads on server]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1242</guid>
		<description><![CDATA[This code is incredibly handy; it allows you to schedule the time for a download to happen &#8212; say, at 3PM while you&#8217;re at work or midnight while you&#8217;re sleeping. user@server:$ echo 'wget http://www.website.com/file.tar.gz' &#124; at 03:00 For example: user@server:$ echo 'wget http://www.rarlab.com/rar/winrar-x64-390nl.exe' &#124; at 13:50 Output: job 1 at 2009-11-28 13:50]]></description>
			<content:encoded><![CDATA[<p>This code is incredibly handy; it allows you to schedule the time for a download to happen &#8212; say, at 3PM while you&#8217;re at work or midnight while you&#8217;re sleeping.</p>

<div class="wp-terminal">user@server:$ echo 'wget http://www.website.com/file.tar.gz' | at 03:00<br/></div>

<h6></h6>
<h3>For example:</h3>

<div class="wp-terminal">user@server:$ echo 'wget http://www.rarlab.com/rar/winrar-x64-390nl.exe' | at 13:50<br/></div>

<h3>Output:</h3>
<div class="codesnip-container" >
<div class="perl codesnip" style="font-family:monospace;">job <span class="nu0">1</span> at <span class="nu0">2009</span><span class="sy0">-</span><span class="nu0">11</span><span class="sy0">-</span><span class="nu0">28</span> <span class="nu0">13</span><span class="sy0">:</span><span class="nu0">50</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/11/28/how-to-schedule-downloads-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find and list all large files on server using bash?</title>
		<link>http://www.bobdroog.nl/2009/11/28/how-to-find-and-list-all-large-files-on-server-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/11/28/how-to-find-and-list-all-large-files-on-server-using-bash/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 12:38:31 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[find large files in linux]]></category>
		<category><![CDATA[find large files on server]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to find large files on server using bash]]></category>
		<category><![CDATA[how to find large files on server using ssh]]></category>
		<category><![CDATA[how to find large files on server using terminal]]></category>
		<category><![CDATA[how to list files larger then]]></category>
		<category><![CDATA[how to list files on server]]></category>
		<category><![CDATA[how to list large files on server using bash]]></category>
		<category><![CDATA[how to list large files on server using ssh]]></category>
		<category><![CDATA[how to list large files on server using terminal]]></category>
		<category><![CDATA[red hat]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1229</guid>
		<description><![CDATA[Looking for large files on your server or linux computer? Find them simply using one of the following commands. This example search for anything above 50MB. root@server:$ find / -type f -size +50M This example search for anything above 100MB. root@server:$ find / -type f -size +100M This example search for anything above 1000MB. root@server:$ [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for large files on your server or linux computer? Find them simply using one of the following commands.</p>
<h3>This example search for anything above 50MB.</h3>

<div class="wp-terminal">root@server:$ find / -type f -size +50M<br/></div>

<h3>This example search for anything above 100MB.</h3>

<div class="wp-terminal">root@server:$ find / -type f -size +100M<br/></div>

<h3>This example search for anything above 1000MB.</h3>

<div class="wp-terminal">root@server:$ find / -type f -size +1000M<br/></div>

<p>Modify your search changing the digit between the &#8220;+&#8221; and &#8220;M&#8221;.. Make sense right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/11/28/how-to-find-and-list-all-large-files-on-server-using-bash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Convert .mkv to .avi and merge subtitles using bash.</title>
		<link>http://www.bobdroog.nl/2009/11/13/convert-mkv-to-avi-and-merge-subtitles-using-bash/</link>
		<comments>http://www.bobdroog.nl/2009/11/13/convert-mkv-to-avi-and-merge-subtitles-using-bash/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:54:59 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[.mkv]]></category>
		<category><![CDATA[.srt]]></category>
		<category><![CDATA[AVI]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[convert .mkv to .avi]]></category>
		<category><![CDATA[converting movie]]></category>
		<category><![CDATA[converting video]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to convert .mkv to .avi with subtitles]]></category>
		<category><![CDATA[how to merge .srt file in .avi]]></category>
		<category><![CDATA[how to merge subtitles]]></category>
		<category><![CDATA[how to merge subtitles in .avi]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[subtitles]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[using subtitles]]></category>

		<guid isPermaLink="false">http://www.bobdroog.nl/?p=1094</guid>
		<description><![CDATA[Converting a .mkv file to .avi is easy using this command. It should also merge the standard subtitles. The only problem is that the .avi is still large. user@server:$ mencoder "video.mkv" -ovc lavc -lavcopts vcodec=mpeg4:threads=8:vbitrate=3000 -oac copy -o video.avi]]></description>
			<content:encoded><![CDATA[<p>Converting a .mkv file to .avi is easy using this command. It should also merge the standard subtitles. The only problem is that the .avi is still large.</p>

<div class="wp-terminal">user@server:$ mencoder "video.mkv" -ovc lavc -lavcopts vcodec=mpeg4:threads=8:vbitrate=3000 -oac copy -o video.avi<br/></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bobdroog.nl/2009/11/13/convert-mkv-to-avi-and-merge-subtitles-using-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

