Beginner’s Guide Flashcards

1
Q

An env variable that specifies a set of directories, separated w/ semicolons, where executable programs are located.

A

Path

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

A way of interacting w a computer directly using text commands

A

Command line interface

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

Name two types of shells

A

GUI & Command line interface

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

A program that allows the user to give commands to the computer

A

A shell

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

A type of script that contains a series of commands

These can contain any number of commands

As long as the OS recognises the script’s commands, the (blank) will execute the commands from start to finish

A

Batch file

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

How would you get more information about how to use a certain command?

A

Type the command followed by /?

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

What is dir short for?

A

Directory

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

This command will list the contents of the folder that you’re currently in.

A

dir

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

cd is short for?

A

Change directory

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

How would you change your current location?

A

cd [name of folder]

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

How do you move up one folder?

A

cd ..

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

What does mkdir stand for?

A

Make directory

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

How would you create a new folder?

A

mkdir

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

How would you delete a file?

A

del [file name]

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

How would you delete a folder?

A

rmdir

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

If there’s too much clutter on the Command Prompt’s screen - how would you get rid of the contents and start fresh?

A

cls

17
Q

If there’s a command running that you want to cancel, how would you?

A

ctrl + c