It's programming time!/Batch/Intro
From Create Your Own Story
(Difference between revisions)
m |
m (→Let's Make A Batch File) |
||
Line 2: | Line 2: | ||
<div style="background-color:rgb(245,245,245);"> | <div style="background-color:rgb(245,245,245);"> | ||
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. | 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. | ||
- | <div style=" | + | </div> |
- | <div style=" | + | <div style="padding:0px 40px;">You'll need: |
+ | <div style="padding:0px 40px;"> | ||
+ | *A computer | ||
*A Windows (or DOS) operating system | *A Windows (or DOS) operating system | ||
*A text editor (such as notepad) | *A text editor (such as notepad) | ||
- | |||
</div> | </div> | ||
</div> | </div> |
Revision as of 01:23, 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.