<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://72.14.177.54/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://72.14.177.54/CREATE_YOUR_OWN_STORY/?action=history&amp;feed=atom&amp;title=It%27s_programming_time%21%2FBatch%2FHelp_with_Help</id>
		<title>It's programming time!/Batch/Help with Help - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://72.14.177.54/CREATE_YOUR_OWN_STORY/?action=history&amp;feed=atom&amp;title=It%27s_programming_time%21%2FBatch%2FHelp_with_Help"/>
		<link rel="alternate" type="text/html" href="http://72.14.177.54/CREATE_YOUR_OWN_STORY/?title=It%27s_programming_time!/Batch/Help_with_Help&amp;action=history"/>
		<updated>2026-06-13T06:12:15Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.15.1</generator>

	<entry>
		<id>http://72.14.177.54/CREATE_YOUR_OWN_STORY/?title=It%27s_programming_time!/Batch/Help_with_Help&amp;diff=292458&amp;oldid=prev</id>
		<title>Underside:&amp;#32;Created page with '==Help with Help== &lt;div style=&quot;background-color:rgb(245,245,245);&quot;&gt; It's not convenient to have to make and run a batch file every time you want to use '''help'''. Here's another…'</title>
		<link rel="alternate" type="text/html" href="http://72.14.177.54/CREATE_YOUR_OWN_STORY/?title=It%27s_programming_time!/Batch/Help_with_Help&amp;diff=292458&amp;oldid=prev"/>
				<updated>2016-07-19T01:48:15Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;#39;==Help with Help== &amp;lt;div style=&amp;quot;background-color:rgb(245,245,245);&amp;quot;&amp;gt; It&amp;#39;s not convenient to have to make and run a batch file every time you want to use &amp;#39;&amp;#39;&amp;#39;help&amp;#39;&amp;#39;&amp;#39;. Here&amp;#39;s another…&amp;#39;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Help with Help==&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color:rgb(245,245,245);&amp;quot;&amp;gt;&lt;br /&gt;
It's not convenient to have to make and run a batch file every time you want to use '''help'''. Here's another way to use it.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding:0px 20px;&amp;quot;&amp;gt;&lt;br /&gt;
This example may output some files. Be careful not to overwrite something accidentally.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;Let's open up the console window.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;In Windows Press (''⊞'' + R) to open the Run window.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;Type '''cmd''' into the Run Window, then press OK.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;When the console window loads type the following into the command prompt:&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;md &amp;quot;C:\Users\''Your User Name''\Documents\BatchFolder&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then press Enter. It will make the directory given as an argument. ''You can also use '''mkdir''' instead of '''md'''.&lt;br /&gt;
&lt;br /&gt;
Then type:&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;C:\Users\''Your User Name''\Documents\BatchFolder&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then press Enter. This will change the current directory. ''You can also use '''chdir''' instead of '''cd'''. &lt;br /&gt;
&lt;br /&gt;
Now type:&lt;br /&gt;
&amp;lt;pre&amp;gt;help &amp;gt; help ref.txt&amp;lt;/pre&amp;gt;&lt;br /&gt;
This will create a file named ''help ref.txt'' in the current directory containing the output of the '''help''' command. Be aware that it will overwrite any currently existing file of the same name, so be careful pressing enter. Now you have a reference file to access whenever you want.&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding:0px 20px;&amp;quot;&amp;gt;&lt;br /&gt;
Now let's get more specific. You can type '''help''' followed by a specific command.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;To give a few examples, with the console window open type:&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;help echo&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;help dir&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;help more&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;help help&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
For more help fun try:&lt;br /&gt;
&amp;lt;pre&amp;gt;help more | more&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding:0px 20px;&amp;quot;&amp;gt;&lt;br /&gt;
You can also open batch files from the command prompt.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
At the command prompt type:&lt;br /&gt;
&amp;lt;pre&amp;gt;echo @echo OFF&amp;gt;helloworld.bat&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;echo echo Hello World!&amp;gt;&amp;gt;helloworld.bat&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;helloworld&amp;lt;/pre&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
Note you don't need to add the '''.bat''' extension for commands, like files with '''.bat''', '''.com''' and '''.exe''' extension.&lt;br /&gt;
 &lt;br /&gt;
*[[It's_programming_time!/Batch/CYOA|That's okay, but what can I do with this?]]&lt;br /&gt;
*[[It's_programming_time!/Batch/Dir|I don't get '''dir''', explain it to me.]]&lt;br /&gt;
*[[It's_programming_time!/Batch/Chdir|Tell me about '''cd'''.]]&lt;br /&gt;
*[[It's_programming_time!/Batch/Switches|Whoa, what the deal with all the jargon in the help for '''dir''' and '''more'''.]]&lt;br /&gt;
*[[It's_programming_time!/Batch/Pipe|What's the deal with '''|'''?]]&lt;br /&gt;
*[[It's_programming_time!/Batch/Redirection Operators|What's the deal with '''&amp;gt;''' and '''&amp;gt;&amp;gt;'''?]]&lt;br /&gt;
&lt;br /&gt;
[[Category:It's programming time!|Batch]]&lt;br /&gt;
[[Category:It's programming time!/Batch|Help]]&lt;/div&gt;</summary>
		<author><name>Underside</name></author>	</entry>

	</feed>