Copying files from one directory to another using find and cpio.
cd /old_file_system/
find . -print -depth | cpio -pamVd /new_file_system/
find . -print -depth | cpio -pamVd /new_file_system/
Copying files from one directory to another using find and cpio.