How do you visualize the content of file "not_empty" in UNIX?
-
type not_empty
-
cat not_empty
-
more not_empty
-
view not_empty
B
Correct answer
Explanation
The cat command prints the entire contents of a file directly to the standard output, making it the primary tool to visualize files. While more is a pager and view is a read-only editor, type is used to identify command types, making cat the best option.