CMD1 USAGE Flashcards

1
Q

WAYS OF USAGE: Compares two files and displays the difference between them

A

fc file1 file2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

WAYS OF USAGE: Deletes a folder (directory) - folder is empty

A

rm folder-name
rmdir folder-name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

WAYS OF USAGE: Copies a file from one location to another

A

copy filepath-from filepath-to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

WAYS OF USAGE: Creates a folder (directory)

A

md folder-name mkdir folder-name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

WAYS OF USAGE: Used to display a message or to turn off/on messages in batch scripts

A

echo message

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

WAYS OF USAGE: Moves file from one folder to another

A

move folder1\file.txt folder2\

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

WAYS OF USAGE: Deletes a folder (directory) - folder is NOT empty

A

rm /s folder-name
rmdir /s folder-name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

SYNTAX: Displays a list of a specific folder’s files and subfolders

A

dir (shows current folder)
dir myfolder

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

WAYS OF USAGE: Changes the name of a file

A

ren file1 file2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

WAYS OF USAGE: Provides more details about DOS/Command Prompt commands

A

help (lists all commands) help command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

WAYS OF USAGE: Displays the name of the current directory or changes the current folder.

A

cd filepath
chdir filepath
cd .. (goes one directory up)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

WAYS OF USAGE: Exits batch script or current command control

A

exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

WAYS OF USAGE: Deletes one or more files

A

del filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

WAYS OF USAGE: Displays contents of a text file

A

type myfile.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

WAYS OF USAGE: Clears the screen

A

cls

How well did you know this?
1
Not at all
2
3
4
5
Perfectly