I have a list of files that I am copying around for various purposes. What my current command looks similar to this:
cat list_of_files | xargs -I {} /bin/cp -f {} /destination/dir
I am using the full path to cp so that the default alias of cp -i does not take effect. However, when I find a duplicate file, it is overwriting any that have already been copied. What I would like to do is to force cp to not overwrite and not prompt.
Is there any way to do this?
