Which command will transfer all files into the 'bin' folder located in the parent directory?

Choose the correct answer

Explanation

Option A attempts to move files with extensions to /bin/ in the current directory, which may not exist. Option B tries to move all files into subdirectories inside /bin/, which is incorrect. Option C correctly moves all files (*) to the 'bin' directory one level up (../bin). Option D uses an invalid syntax by mixing wildcards and directory paths.

Which command will transfer all files into the 'bin'… — Basic of linux unix | PakQuizHub