cp \ alias \unalias 使用方法
cp命令
1.把整个/root/Desktop目录下的所有文件和文件夹,复制到/tmp目录下
[root@Nginx-Proxy ~]# cp -r Desktop/ /tmp/
2.把/root目录下的test.txt文件复制到/tmp/目录下(注意该目录下,已经存在test.txt文件),我们需要没有任何提示覆盖信息。
[root@Nginx-Proxy ~]# cp test.txt /tmp/ #正常情况下有提示
cp: overwrite `/tmp/test.txt'? y
[root@Nginx-Proxy ~]# \cp test.txt /tmp/
#反斜杜后就没有任何提示
原因分析: 因系统自带的cp命令,给别名强制加上了-i 确认参数,我们只需要使用反斜杜,或者命令的绝对路径运行也可以,如下:
[root@Nginx-Proxy ~]# alias
alias cp='cp -i'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias net='cat /etc/sysconfig/network-scripts/ifcfg-eth2'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'