首页 > 代码库 > 谈linux cp命令的覆盖

谈linux cp命令的覆盖

系统定义了别名

alias cp=‘cp -i‘

-i, --interactive            prompt before overwrite (overrides a previous -n

                                  option) 交互确认

直接cp -rf test.txt test/ 会有提示


无提示方法

1、/cp -rf test.txt test/  cp前加/符号会覆盖,无提示


2、在脚本里执行


3、注释掉别名

本文出自 “czwanga” 博客,请务必保留此出处http://czwanga.blog.51cto.com/4840967/1922549

谈linux cp命令的覆盖