Presentation 7
Presentation 7
Presentation 7
• There are mainly two types of DOS Commands. These are as follows:
• Internal Commands
• External Commands
Internal commands
• Internal Commands
• Internal commands are loaded into the system memory during system
booting. These internal commands may not be seen, modified, detected, or
deleted because they do not exist in the form of a file. An internal
command is the MS-DOS command stored in system memory and loaded
from command.com or cmd.exe. Internal commands include MD, DATE,
COPY, CD, TIME, COPR CON, TYPE, etc.
External commands
• External commands are stored in the system memory after system
booting. These external commands may easily be viewed, changed,
deleted, or copied as they are present in the form of a file. External
commands include FORMAT, SYS, EDIT, PROMPT, COPY, PRINT,
TREE, SORT, etc.
Wild card
• Alternatively referred to as a wild
character or wildcard character, a wildcard is a
symbol used to replace or represent one or more
characters. The most common wildcards are the
asterisk (*), which represents one or more
characters, and question mark (?), which represents
a single character. In the examples below of how a
wildcard may be used, realize that wildcards are
relatively universal.
Examples
• Percent ( % ) in a wildcard
• The percent symbol is used in SQL to match any
character (including an underscore) zero or more
times.
Asterisk
• Asterisk ( * ) in a wildcard
• The asterisk in a wildcard matches any character
zero or more times. For example, "comp*" matches
anything beginning with "comp," which means
"comp," "complete," and "computer" are all
matched.
• .
Question mark