Multiple choice technology

How do you visualize the content of file "not_empty"?

  1. type not_empty

  2. cat not_empty

  3. more not_empty

  4. next not_empty

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

cat is the standard Unix command to display file contents to stdout. type shows file type information (not content), more is a pager for viewing large files but cat is the fundamental visualization command, and next is not a standard Unix command.