See also cp under Commands section.

Directory

cp -R SOURCE DEST

Interactive

cp -i SOURCE DEST

Force

cp -f SOURCE DEST

Note that will not work if you have interactive aliased. So you’ll to reference the non-aliased form. Or do this.

yes | cp SOURCE DEST

answer on SO