当前位置: 技术问答>linux和unix
求助:cp拷文件如何才能不提示overwrite
来源: 互联网 发布时间:2016-02-20
本文导语: 查cp的帮助有这么两条: -i, --interactive prompt before overwrite -f, --force if an existing destination file cannot be opened, remove it and try again 我就这样直接拷贝目录: cp -a-r-f /usr/test/a ...
查cp的帮助有这么两条:
-i, --interactive
prompt before overwrite
-f, --force
if an existing destination file cannot be opened, remove it and try again
我就这样直接拷贝目录:
cp -a-r-f /usr/test/a /usr/local/test
但是目标文件夹中包含同名文件还是会提示overwrite:
cp: overwrite `/usr/local/mysql/data/test/test.sh'?
有什么办法可以强制覆盖而不提示么?
-i, --interactive
prompt before overwrite
-f, --force
if an existing destination file cannot be opened, remove it and try again
我就这样直接拷贝目录:
cp -a-r-f /usr/test/a /usr/local/test
但是目标文件夹中包含同名文件还是会提示overwrite:
cp: overwrite `/usr/local/mysql/data/test/test.sh'?
有什么办法可以强制覆盖而不提示么?
|
cp -rf dir
cp -f file
cp -f file