Batch File Compare - Automate Routine Jobs

Anatomy of a Batch File. A batch file contains aof program into upper memory/expandable memory
sequence of commands for a computer OS. Batchthus freeing up conventional memory for utilities to run.
files are called so due to their ability to batch or bundlePractice ground for juvenile virus writers. Batch files
commands together in a single file which otherwisehave become a script kiddie favorite due to their
would have to be executed individually. Batch files aresimple syntax and low amount of programming
typically created for command sequences for whichknowledge required. Laughed upon by the advanced
the user may have repeated needs. Common uses ofvirus writers for their simplicity, batch file virus can
batch files are for deleting a series of files, runningcause massive damage very rapidly. Fortunately batch
utilities and moving files. Once a batch file is executedfile viruses don't spread unless copied into another
it's read by a shell program which executes it line bycomputer.
line. A batch file is something similar to a shell script inBatch File Comparing. File Comparing is the automated
UNIX like OS's .Batch files are intelligent enough tocomparing of files or folders which are there in a file
make decisions and performs operations only if asystem. The commonly used file comparing programs
certain conditions exist or don't exist. Certain batch filesare diff and cmf. Dff files displays the changes made
are known to execute commands that are notper line and nowadays they have developed to include
available under DOS.binary files. File comparison tools works by finding the
The commonly used batch file is AUTOEXE.bat whichLongest Common Sub Sequence (LCS).What LCS
is a simple boot file which loads every time MS DOSessentially does is it tries to find a new sequence from
starts and contains a list of commands used to runtwo sets of items such a way that the new sequence
programs on MS DOS. The most apt comparisoncan be obtained by deleting certain items from the two
would be with a desktop shortcut in windows whicholder sets.
runs programs. Though out dated, batch files are stillCertain other programs use the Longest Increasing sub
used by system administrators to automate routinesequence to differentiate between two files. File
processes. Even though batch files support basiccomparing softwares like Active file compare, Win
program flow commands such as IF and GOTO theyMerge and Meld allows comparing, merging and
are un-suited for general purpose programming. With asynchronizing files. Active File compare has a built in
single command batch files can launch a program inFile manager whereby you can compare two folders,
the desired configuration as well as start ancopy files or load files for further work. WinMerge has
associated program such as a word processor toa flexible editor with syntax highlighting, line numbers
start once the main program is running. Sophisticatedand word wrap.
batch files exists which are capable of loading a part