<?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>gHacks technology news &#187; windows command line</title>
	<atom:link href="http://www.ghacks.net/tag/windows-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 03:24:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Join Mp3 From The Command Line</title>
		<link>http://www.ghacks.net/2008/11/18/join-mp3-from-the-command-line/</link>
		<comments>http://www.ghacks.net/2008/11/18/join-mp3-from-the-command-line/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 22:45:18 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[join mp3]]></category>
		<category><![CDATA[merge mp3]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mp3 tips]]></category>
		<category><![CDATA[windows command line]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8351</guid>
		<description><![CDATA[Lots of tools can join multiple mp3 files into one mp3 file that contains all the bits of the original files. Mp3 files but also files with the ogg extension can be concatenated easily because of the way the data is structured. The following command line argument will not work with many other file types [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of tools can join multiple mp3 files into one mp3 file that contains all the bits of the original files. Mp3 files but also files with the ogg extension can be concatenated easily because of the way the data is structured. The following command line argument will not work with many other file types like those created by Microsoft Office.</p>
<p>Only one line of code is needed to join multiple mp3 files: <code>copy /b *.mp3 c:\new.mp3</code>. That&#8217;s all there is needed. The <em>/b</em> parameter ensures that the files are copied in binary format. <em>*.mp3</em> defines the source directory of the files. You can easily add a drive and folder structure in front. The wildcard <em>*</em> defines that all mp3 will be joined alphanumerically by the command. It is possible to limit the files by adding letters or numbers to the command, e.g. m*.mp3 to join all mp3 starting with the letter m.</p>
<p>The last part <em>c:\mp3</em> defines the target directory for the newly created file as well as its name. A possibility to join files with different filenames is also available. Simply use the command <em>copy /b file1.mp3 + aaa.mp3 + r3f.mp3 c:\new.mp3</em> for this. You may use wildcards as well for the process.</p>
<p><span id="more-8351"></span>Several applications like <a href="http://www.ghacks.net/2008/01/21/create-ringtones-with-audacity-and-youtube/">Audacity</a> can also be used to merge music files. <a href="http://www.ghacks.net/2007/11/08/edit-mp3-without-encoding-them/">Mp3 Direct Cut</a> is another one for the purpose.</p>

	Tags: <a href="http://www.ghacks.net/tag/command-line/" title="command-line" rel="tag">command-line</a>, <a href="http://www.ghacks.net/tag/join-mp3/" title="join mp3" rel="tag">join mp3</a>, <a href="http://www.ghacks.net/tag/merge-mp3/" title="merge mp3" rel="tag">merge mp3</a>, <a href="http://www.ghacks.net/tag/mp3/" title="mp3" rel="tag">mp3</a>, <a href="http://www.ghacks.net/tag/mp3-tips/" title="mp3 tips" rel="tag">mp3 tips</a>, <a href="http://www.ghacks.net/tag/windows-command-line/" title="windows command line" rel="tag">windows command line</a>, <a href="http://www.ghacks.net/tag/windows-tips/" title="windows tips" rel="tag">windows tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/04/merge-mp3/" title="Merge Mp3 (September 4, 2009)">Merge Mp3</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/command-line-directory-switcher/" title="Command Line Directory Switcher (October 2, 2008)">Command Line Directory Switcher</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/12/04/run-vistas-windows-system-assessment-tool-in-windows-xp/" title="Run Vista&#8217;s Windows System Assessment Tool In Windows XP (December 4, 2008)">Run Vista&#8217;s Windows System Assessment Tool In Windows XP</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/02/25/prepare-your-audiobooks-for-a-roadtrip/" title="Prepare your Audiobooks for a Roadtrip (February 25, 2008)">Prepare your Audiobooks for a Roadtrip</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/02/18/id3-mass-tagger/" title="ID3 Mass Tagger (February 18, 2009)">ID3 Mass Tagger</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/18/join-mp3-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Command Line Directory Switcher</title>
		<link>http://www.ghacks.net/2008/10/02/command-line-directory-switcher/</link>
		<comments>http://www.ghacks.net/2008/10/02/command-line-directory-switcher/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 16:18:13 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[wcd]]></category>
		<category><![CDATA[wherever change directory]]></category>
		<category><![CDATA[windows command line]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7360</guid>
		<description><![CDATA[If you want to switch between directories in the Windows command line you need to type in the path directly most of the time especially if the files are located on different partitions. The tab feature is great for completing a file or directory name but there is no option to switch directories fast.
Wherever Change [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to switch between directories in the Windows command line you need to type in the path directly most of the time especially if the files are located on different partitions. The tab feature is great for completing a file or directory name but there is no option to switch directories fast.</p>
<p><a href="http://www.xs4all.nl/~waterlan/">Wherever Change Directory</a> (WCD via <a href="http://www.downloadsquad.com/2008/10/01/24-great-open-source-apps-for-admins-and-technicians/">Download Squad</a>) is the name of a Windows script that is offering a way to change directories in the Windows command line blazingly fast. It indexes the directory structure of the computer system at first start of the application which takes a few seconds. After that it is possible to change directories with the command wcd directory, for example wcd desktop. The default search is to look for every directory name that begins with the search term that the user entered. Wildcards can be used to change that behavior.</p>
<p>WCD will display all directories with desktop in their name giving the user the option to pick one to change to. If only one directory with the name was found on the system WCD will immediately make the directory change. </p>
<p><span id="more-7360"></span>Wherever Change Directory supports local directories, Windows LAN UNC paths, alias  directories and subdirectories.</p>
<p>A user who has the intention to work regularly with the software program should either move it into a system path directory or add the new directory to the system path to be able to run wcd from every location and not only its source directory.</p>

	Tags: <a href="http://www.ghacks.net/tag/command-line/" title="command-line" rel="tag">command-line</a>, <a href="http://www.ghacks.net/tag/shell/" title="shell" rel="tag">shell</a>, <a href="http://www.ghacks.net/tag/wcd/" title="wcd" rel="tag">wcd</a>, <a href="http://www.ghacks.net/tag/wherever-change-directory/" title="wherever change directory" rel="tag">wherever change directory</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/windows-command-line/" title="windows command line" rel="tag">windows command line</a>, <a href="http://www.ghacks.net/tag/windows-tips/" title="windows tips" rel="tag">windows tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/18/join-mp3-from-the-command-line/" title="Join Mp3 From The Command Line (November 18, 2008)">Join Mp3 From The Command Line</a> (17)</li>
	<li><a href="http://www.ghacks.net/2008/01/15/windows-tip-dont-replace-any-files-while-copying/" title="Windows Tip: Don&#8217;t replace any files while copying (January 15, 2008)">Windows Tip: Don&#8217;t replace any files while copying</a> (10)</li>
	<li><a href="http://www.ghacks.net/2007/09/25/windows-steady-state/" title="Windows Steady State (September 25, 2007)">Windows Steady State</a> (11)</li>
	<li><a href="http://www.ghacks.net/2006/07/04/windows-shut-down-takes-ages-try-profile-hive/" title="Windows shut down takes ages ? Try Profile Hive (July 4, 2006)">Windows shut down takes ages ? Try Profile Hive</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/04/24/windows-keyboard-shortcuts/" title="Windows Keyboard shortcuts (April 24, 2006)">Windows Keyboard shortcuts</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/10/02/command-line-directory-switcher/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
