Multiple choice technology testing

How do you get help about the command "cp" in UNIX?

  1. help cp

  2. man cp

  3. cp ?

  4. all of the above

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

The man (manual) command in UNIX displays documentation for commands, so 'man cp' shows the cp command's manual page with usage syntax, options, and examples. The 'help' command works for shell built-ins, not external commands like cp. The '?' syntax is used in different systems but not standard UNIX.