Comment 5 for bug 264585

Revision history for this message
Nhorning (neilhorning) wrote :

In the interest of the plethora of newbs this project it attempting to attract, I think it best to post a workaround.

Please correct me if I'm wrong.

To skip all overwrites:
cp -n -r -v <filesource> <filedestination>

To overwrite all files:
cp -f -r -v <filesource> <filedestination>

-Neil