What is the result of the following command?

$ find / -iname "*.txt" | file > sort

A) The command will redirect the output of the file command to a file named sort.
B) The command will search for all .txt files and output their types into a file named sort.
C) The command will give an error because of improper usage of the file command.
D) The command will search for all .txt files and sort them based on their types.

Q&A Education