I have two directories with similar files, (one being a backup), what is a command that allows me to copy over only the files that are different to the backup?
cp -rf firstDir/* secondDir
is awfully inefficient, since a lot of the files are the same.