Linux 之 cp alias unalias 使用方法(第六章)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 之 cp alias unalias 使用方法(第六章)相关的知识,希望对你有一定的参考价值。
cp \ alias \unalias 使用方法
cp命令
1.把整个/root/Desktop目录下的所有文件和文件夹,复制到/tmp目录下[[email protected] ~]# cp -r Desktop/ /tmp/
2.把/root目录下的test.txt文件复制到/tmp/目录下(注意该目录下,已经存在test.txt文件),我们需要没有任何提示覆盖信息。
[[email protected] ~]# cp test.txt /tmp/ #正常情况下有提示
cp: overwrite `/tmp/test.txt‘? y
[[email protected] ~]# \cp test.txt /tmp/
#反斜杜后就没有任何提示
原因分析:
因系统自带的cp命令,给别名强制加上了-i 确认参数,我们只需要使用反斜杜,或者命令的绝对路径运行也可以,如下:
[[email protected] ~]# 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‘
以上是关于Linux 之 cp alias unalias 使用方法(第六章)的主要内容,如果未能解决你的问题,请参考以下文章