Chapter 10: Command Prompt

0.0(0)
studied byStudied by 19 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards
Operating system
system software that manages computer hardware, software resources, and provides common services for computer programs
2
New cards
Graphic user interface
uses graphics, photos, and icons, e.g. Windows and Android
3
New cards
Text-based user interface
displays text, and use commands that are typed into the interface, wherein user have to memorize these commands, e.g. UNIX
4
New cards
help
command used to get information on commands
5
New cards
command /?
command used to get help on a specific command
6
New cards
cls
clear the screen
7
New cards
arrow keys
move through previously entered commands
8
New cards
F7 key
display command history in an overlay window
9
New cards
Ctrl + C
exit a running command process or script
10
New cards
exit
close the command window
11
New cards
File path
the location of a file referenced by a drive and directories, the complete path to a file starts from the volume letter, followed by directory's names, separated using the back-slash, and the file name at the end
12
New cards
md
create directory
13
New cards
dir
list the content of the directory
14
New cards
cd
enter the directory
15
New cards
cd \\
exit all directory and go back to drive root
16
New cards
ren
rename a directory or file
17
New cards
rd
delete the directory if empty
18
New cards
del
delete directory/file
19
New cards
copy
copy file from source to destination
20
New cards
xcopy
extended copy the folder and content
21
New cards
move
move file from source to destination
22
New cards
wildcards
can be substituted for characters or groups of characters in file names
23
New cards
\*
this character matches groups of characters, including entire filenames and file extensions
24
New cards
?
This character stands for any single character. It does not stand for \n a group of characters