Chapter 10 exam Flashcards

1
Q

Error messages generated by commands are sent where by default?

STDERR
STDIN
Log files
STDOUT

A

STDERR

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

A successful command may, or may not print output to STDOUT.
True or False?

True
False

A

True

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

Which of the following commands will direct error messages to the file, error.log?

ls /root&raquo_space; error.log
ls /root > error.log
ls /root 2> error.log
ls /root $> error.log

A

ls /root 2> error.log

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

A pipe allows you to…

…send the same input to multiple commands.
…type multiple commands at one prompt.
…send the output of one command to another.
…send the output of a command to a file.

A

…send the output of one command to another.

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

Channel 2 is:

STDOUT
STDALL
STDERR
STDIN

A

STDERR

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

Which of the following commands will append its output to output.file?

echo Testing&raquo_space; output.file
echo Testing > output.file
output.file < echo Testing
echo Testing -> output.file

A

echo Testing&raquo_space; output.file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
Which command(s) can be used to sort the lines of list.file alphabetically and display it on the screen?
(choose two)

sort < list.file
cat list.file&raquo_space; sort
echo list.file > sort
cat list.file | sort

A

sort < list.file

cat list.file | sort

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

Which option of the head command will display only the first five lines of a file?

No option needed; head displays only five lines by default.

  • n
  • l 5
  • n 5
A

-n 5

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

The grep command…

…will display all the lines that begin with the specified Regular Expression.
…will display all the lines in a file containing the specified Regular Expression.
…will display the line numbers in a file that contain a specified Regular Expression.
…is not case sensitive.

A

…will display all the lines in a file containing the specified Regular Expression.

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

The grep command can be used with glob characters.
True or False?
True
False

A

True

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

Which of the following commands will display only lines that begin with start?

grep \start file.txt
grep $start file.txt
grep *start file.txt
grep ^start file.txt

A

grep ^start file.txt

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

Which of the following commands will display only lines that begin with test?

grep $test* file.txt
grep *test file.txt
grep &test file.txt
grep ^test file.txt

A

grep ^test file.txt

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

Which of the following commands will display lines that contain either start or end?

egrep ‘start|end’ file.txt
egrep (start|end) file.txt
egrep start end file.txt
egrep start&end file.txt

A

egrep ‘start|end’ file.txt

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

Which of the following commands can be used to scroll through a text file?
(choose two)

some
more
cat
less

A

more

less

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

Which option for the cut command is used to specify a delimiter?

-D
-f
=
-d

A

-d

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

Which option for the cut command is used to specify the field?

-d
#
-D
-f

A

-f

17
Q

Which option for the wc command will print the number of lines in a file?

  • w
  • l
  • L
  • C
A

-l

18
Q

Which option for the wc command will print the total number of words in a file?

  • l
  • C
  • L
  • w
A

-w

19
Q

Which command can be used to print line numbers?

num
nl
ln
sort

A

nl

20
Q

The command echo “text” > file.txt will create file.txt if it does not already exist.
True or False?

True
False

A

True

21
Q

The command echo “text” > file.txt will not overwrite file.txt if it already exists.
True or False?

True
False

A

False

22
Q

The command echo “text”&raquo_space; file.txt will not overwrite file.txt if it already exists.
True or False?

True
False

A

True