To copy the files from the USB drive to the FMP or from the FMP to the USB drive use the following command:
cp <source> <destination>
Examples:
To copy a file named FileA from the current directory on the FMP to the USB drive partition mounted on the /MyMount directory, use the following command:
cp FileA /MyMount
To copy a file named FileB from the USB drive partition mounted on the /MyMount directory to the current directory, use the following command:
cp /MyMount/FileB .
Note: Before removing the USB drive from the port, you should unmount it using the following command:
umount <mountdir>where, <mountdir> is the name of the directory on which the USB partition is mounted.