It's programming time!/Batch/Intro
From Create Your Own Story
< It's programming time! | Batch(Difference between revisions)
m |
m |
||
Line 27: | Line 27: | ||
*[[It's_programming_time!/Batch/Pause|Why is there a pause?]] | *[[It's_programming_time!/Batch/Pause|Why is there a pause?]] | ||
*[[It's_programming_time!/Batch/Dir|That's ''too'' simple, I want to learn something cooler.]] | *[[It's_programming_time!/Batch/Dir|That's ''too'' simple, I want to learn something cooler.]] | ||
+ | |||
+ | [[Category:It's programming time!|Batch]] | ||
+ | [[Category:It's programming time!/Batch|Intro]] |
Current revision as of 02:29, 16 July 2016
Let's Make A Batch File
A batch file is basically just a list of DOS commands. They can be used to automate a repetitive task or run any set of commands you might need on a regular basis. If you follow along you'll soon be able to create your own batch files to make your computing life easier.
You'll need:
- A computer
- A Windows (or DOS) operating system
- A text editor (such as notepad)
We'll start with the basics:
- Create a new text file. (Right click>>New>>Text Document)
- Rename your text file. Change the extension from .txt to .bat
- Open your .bat file in your text editor. You can drag and drop it into your editor from Windows.
- Add the following text to the file:
@echo The echo command repeats back whatever you type after it. @pause
- Save your file without any formatting (Plain text).
- Double click your .bat file to execute the commands.
Remember: Don't edit the batch file while it's running. You can get unexpected errors that way.