It is possible that the "cp" command is aliased to "cp -i" (prompt before overwrite.) I don't know how Westhost defaults their setups, but that's a common setting to help avoid mistakes. If you type "alias" at the command line, you can see a list of your aliases.
If that is the issue and you want to run an "unaliased" cp command, try
$ /bin/cp -rf foo/* bar
--
Bruce
|