when you run: cp -rf /source/* /destination , it always ask you to confirm the overwrite action.
Root cause: it’s probably the cp has been alias as cp -i Fix:
/bin/cp -rf /source/* /destination
or
yes | cp -rf /source/* /destination
when you run: cp -rf /source/* /destination , it always ask you to confirm the overwrite action.
Root cause: it’s probably the cp has been alias as cp -i Fix:
/bin/cp -rf /source/* /destination
or
yes | cp -rf /source/* /destination
Designed using Responsive Brix. Powered by WordPress.