码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下cp -rf总是提示覆盖的解决办法

时间:2016-10-30 09:23:40      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:覆盖   常用   解决   linu   spec   问题   提醒   function   txt   

通常情况下使用cp -rf进行文件或者文件夹的管理时一般就不再提醒是否覆盖。然而在内网的一台机器上使用cp -rf却提示是否覆盖。难道和常用的命令不同?

    [root@xxxx test]# cp -rf ./files/ ./bak/

    cp:是否覆盖"./bak/files/test.txt"?

    cp:是否覆盖"./bak/files/hh.txt"?

    cp:是否覆盖".www.1.qixoo.com/bak/files/child/child.txt"?


后来发现是别名引起的问题。

    [root@xxxx test]# alias

    alias cp=‘cp -i‘

    alias egrep=‘egrep --color=auto‘

    alias fgrep=‘fgrep --color=auto‘

    alias grep=‘grep --color=auto‘

    alias l.=‘ls -d .* --color=auto‘

    alias ll=‘ls -l --color=auto‘

    alias ls=‘ls --color=auto‘

    alias mv=‘mv -i‘

    alias rm=‘rm -i‘

    alias which=‘alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde‘


发现每次执行cp命令,其实是执行了cp -i命令的别名,因此无论怎么输入都提示是否覆盖。


修改~/.bashrc,在“alias cp=‘cp -i‘”前添加#号注释后即可。

    [root@xxxx test]# vi ~/.bashrc


    # .bashrc


    # User specific aliases and functions


    alias rm=‘rm -i‘

    #alias cp=‘cp -i‘

    alias mv=‘mv -i‘


    # Source global definitions

    if [ -f /etc/bashrc ]; then

            . /etc/bashrc

    fi


让命令生效:

    source ~/.bashrc


或者重启即可。


Linux下cp -rf总是提示覆盖的解决办法

Linux下cp -rf总是提示覆盖的解决办法

标签:覆盖   常用   解决   linu   spec   问题   提醒   function   txt   

原文地址:http://www.cnblogs.com/qixoo/p/6012414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!