brayhan gutierrez cespedes
Test por , creado hace más de 1 año

fdsfdfsfsdfdsfsdfsd

30
0
0
brayhan gutierrez cespedes
Creado por brayhan gutierrez cespedes hace alrededor de 7 años
Cerrar

8

Pregunta 1 de 24

1

Error messages generated by commands are sent where by default?

Selecciona una de las siguientes respuestas posibles:

  • Log files

  • STDOUT

  • STDERR

  • STDIN

Explicación

Pregunta 2 de 24

1

A successful command will print output to STDOUT.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 3 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • ls /root >> error.log

  • ls /root 2> error.log

  • ls /root $> error.log

  • ls /root > error.log

Explicación

Pregunta 4 de 24

1

A pipe allows you to…

Selecciona una de las siguientes respuestas posibles:

  • …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.

Explicación

Pregunta 5 de 24

1

Channel 2 is:

Selecciona una de las siguientes respuestas posibles:

  • STDIN

  • STDALL

  • STDOUT

  • STDERR

Explicación

Pregunta 6 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • echo Testing > output.file

  • echo Testing >> output.file

  • output.file < echo Testing

  • echo Testing -> output.file

Explicación

Pregunta 7 de 24

1

Which command(s) can be used to sort the lines of list.file alphabetically and display it on the screen?

Selecciona una o más de las siguientes respuestas posibles:

  • sort < list.file

  • cat list.file | sort

  • cat list.file >> sort

  • echo list.file > sort

Explicación

Pregunta 8 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • -l 5

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

  • -n

  • -n 5

Explicación

Pregunta 9 de 24

1

The grep command…

Selecciona una de las siguientes respuestas posibles:

  • …will display all the lines that begin with the specified Regular Expression.

  • …is not case sensitive.

  • …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.

Explicación

Pregunta 10 de 24

1

The grep command can be used with glob characters.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 11 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • grep *start file.txt

  • grep $start file.txt

  • grep start file.txt

  • grep ^start file.txt

Explicación

Pregunta 12 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • grep ^test file.txt

  • grep $test* file.txt

  • grep *test file.txt

  • grep &test file.txt

Explicación

Pregunta 13 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • egrep start end file.txt

  • egrep ‘start|end’ file.txt

  • egrep start&end file.txt

  • egrep (start|end) file.txt

Explicación

Pregunta 14 de 24

1

Which of the following commands can be used to scroll through a text file?

Selecciona una o más de las siguientes respuestas posibles:

  • some

  • less

  • cat

  • more

Explicación

Pregunta 15 de 24

1

The find command can search for files based on the size of the file.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 16 de 24

1

Which of the following commands scans the file to determine file locations?

Selecciona una de las siguientes respuestas posibles:

  • search

  • locate

  • where

  • find

Explicación

Pregunta 17 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • -f

  • -d

  • =

  • -D

Explicación

Pregunta 18 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • -D

  • -f

  • -d

  • #

Explicación

Pregunta 19 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • -l

  • -w

  • -C

  • -L

Explicación

Pregunta 20 de 24

1

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

Selecciona una de las siguientes respuestas posibles:

  • -l

  • -L

  • -C

  • -w

Explicación

Pregunta 21 de 24

1

Which command can be used to print line numbers?

Selecciona una de las siguientes respuestas posibles:

  • num

  • sort

  • ln

  • nl

Explicación

Pregunta 22 de 24

1

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

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 23 de 24

1

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

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 24 de 24

1

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

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación