Command Line Basics Flashcards

1
Q

What is a CLI? Command

A

Line Interface (text based application or operating system)

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

What is a GUI? Graphical

A

User Interface (image based application or operating system)

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

Give at least one use case for each of the commands listed in this exercise.

A

man - an interface to the on-line reference manuals

man is the system’s manual pager. Each
page argument given to man is normally
the name of a program, utility or function.

“man man”

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

cat

A

concatenate files and print on the standard output

cat “file” (prints contents of file to screen)

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

ls

A

List information about the FILEs

ls -a (do not ignore entries starting with .)

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

pwd

A

print name of current/working directory

pwd > i-was-here.txt (write this file to current working directory)

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

echo

A

display a line of text - writes strings in text file

echo ‘Hello, World!’ > hello.txt

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

touch

A

change file timestamps

folder touch text adds file to folder

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

mkdir

A

make directories

mkdir

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

mv

A

move (rename) files

mv “file” (rename file)

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

rm

A

remove files or directories

rm -r “file” (remove file and all contents)

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

cp

A

copy files and directories

cp -r (copies files recursively)

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

What are the three virtues of a great programmer?

A

laziness, hubris and

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