Command Line Flashcards

1
Q

What is CLI?

A

Command Line Interface: processes commands to a computer program in the form of lines of text. The program which handles the interface is called a command-line interpreter or command-line processor.

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

What is GUI?

A

Graphical user Interface: is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of text-based user interfaces, typed command labels or text navigation.

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

man

A

displays the user manual of any command that we can run on the terminal.

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

cat

A

reads data from the file and gives their content as output.
EX: $cat filename
$ cat file1 file2

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

ls

A

displays a list of files inside the active folder

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

pwd

A

print working directory and will show you the name of your current working directory

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

mkdir

A

make directory and allows for the creation of new directories

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

mv

A

move files or directories to somewhere else or also can be used to rename a file

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

rm

A

remove files

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

cp

A

copy files or directories

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