Which command correctly duplicates the file 'wb' from the 'programs' folder into the 'misc' folder while keeping the same filename?
Explanation
Option B uses the 'cp' command to copy the file 'wb' from the 'programs' directory into the 'misc' directory, preserving the filename. Option A attempts to copy with a full destination path but may not work as expected in all shells. Option C uses 'tar', which is for archiving, not simple copying. Option D uses syntax from DOS systems which may not apply here. Option E moves the file instead of copying it.