How do you visualize the content of file "not_empty"?
-
type not_empty
-
cat not_empty
-
more not_empty
-
next not_empty
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.