1/22/15 Flashcards

1
Q

What does the cat command do?

A

It looks at the contents of a particular file. cat filename

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

If you want to take a look at the contents of a file one page at a time what command would you use?

A

more filename

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

What does the command head do?

A

It shows you the first 10 lines of a file

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

What does the command tail do?

A

Its shows the bottom lines of a file

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

Standard Output

A

echo output > file, to append more you would do echo more output&raquo_space; file

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

What command will allow you to insert text into a vi where the cursor is

A

i

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

What command is used to put you back in command mode?

A

esc

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

When in command mode besides the arrows on the key board what will allow you to move left, right , up and down

A

h -left
l -right
j - down
k - up

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

What deletes lines in command mode in a vi?

A

dd

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

What command deletes word in command mode in a vi?

A

dw

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

What command changes a single word in command mode in a vi?

A

cw

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

What command copies a line in command mode in a vi?

A

yy

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

What command allows you to enter special commands in a vi

A

shift :

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

What commands saves a file in vi?

A

w

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

What command quits the vi?

A

q

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

What command quits the vi with out saving?

A

q!

17
Q

What command save and quits the vi?

A

ZZ