Batch Processing Commands
Batch processing commands are multi-line command files composed of line command units. There are three types of batch processing files. One is the AUTOEXEC.BAT automatic batch processing command, which is used as an environment configuration. The second is the batch processing file used by the user, which is also composed of commands. It is customized by the user with a file name for their own use, and the name cannot be AUTOEXEC.BAT. The third is the parameter batch processing, which can organize batch processing files like language programming, making the batch processing function more flexible and practical. It can be used not only in organizing automatic startup batch processing but also in organizing users' batch processing.
In plain terms, it is a scripting language~~And the syntax and rules of this scripting language come from the system that endows it with life~~If it exceeds this system, it (batch processing) will not be able to run.
In fact, it is somewhat like the SHELL in UNIX systems~~But the function is weaker than SHELL.