A user issued the following command on a Linux system:
find / -name passwd | cpio -o | bzip2 > passwd.cpio.bz2
What could be the purpose of issuing this command?
A.
to find all files called passwd in the root file system ( / )
B.
to find the /etc/passwd file and compress it using bzip2
C.
to create a compressed cpio archive of all files with the name passwd.
D.
to create a compressed cpio archive of the list of all files with the name passwd
Explanation: