How do you get help about the command "mv"?
-
help mv
-
man mv
-
mv ?
-
mv help
B
Correct answer
Explanation
The 'man' command displays the manual page for a Unix/Linux command. 'man mv' opens the documentation for the move/renamed command, showing usage options and examples. 'help mv' and 'mv help' are not standard Unix commands, and 'mv ?' is shell-specific syntax that works in some shells but isn't the standard way to access documentation.