Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you any one use cp command to ignore cp: overwrite? I have tried with cp -rf /zzz/zzz/* /xxx/xxx,

but still I am experiencing same overwrite promotion for each and every files and folder. looking for suggestions to overwrite all files and folder with out pressing y for hell lot of times.

Thanks

-Thiyagarajan

share|improve this question

5 Answers

up vote 33 down vote accepted

You can do yes | cp -rf xxx yyy, but my gutfeeling says that if you do it as root - your .bashrc or .profile has an alias of cp to cp -i, most modern systems do that to root profiles.

You can check existing aliases by running alias on command prompt. If you have it defined, running unalias cp will abolish that for current session, otherwise remove it from your shell profile.

As mentioned in comments, you can temporarily bypass an alias and use the non-aliased version of a command by prefixing it with \, e.g. \cp whatever

share|improve this answer
   
favoretti - you are Amazing ! it works. :-) When I checked alias, it listed alias cp='cp -i' as you suggested I did unalias cp. now I can copy with out any promot. Its great help buddy. Thanks ton. :-) – thiyagu114 Dec 13 '11 at 11:42
@thiyagu114: welcome :) – favoretti Dec 13 '11 at 12:14
12  
You can temporarily bypass an alias and use the non-aliased version of a command by prefixing it with \, e.g. \cp whatever. – Sorpigal Dec 13 '11 at 15:52
thats nice , Thanks Sorpigal ! – thiyagu114 Dec 15 '11 at 14:08

This is probably caused by cp being already aliased to something like cp -i. Calling cp directly should work:

/bin/cp -rf /zzz/zzz/* /xxx/xxx

Another way to get around this is to use the yes command:

yes | cp -rf /zzz/zzz/* /xxx/xxx
share|improve this answer
yes, I did unalias cp -i , now its working.. Thank you for your valuable reply. – thiyagu114 Dec 13 '11 at 11:43

You probably have an alias somewhere, mapping cp to cp -i; because with the default settings, cp won't ask to overwrite. Check your .bashrc, your .profile etc.

See cp manpage: Only when -i parameter is specified will cp actually prompt before overwriting.

share|improve this answer
Beat me by 42 seconds! :P – favoretti Dec 13 '11 at 11:21
yes, I did unalias cp -i , now its working.. Thank you for your valuable reply. – thiyagu114 Dec 13 '11 at 11:43

As some of the other answers have stated, you probably use an alias somewhere which maps cp to cp -i or something similar. You can run a command without any aliases by preceding it with a backslash. In your case, try

\cp -r /zzz/zzz/* /xxx/xxx

The backslash will temporarily disable any aliases you have called cp.

share|improve this answer
that's nice to disable temporarily... Thank you so much Chris.. – thiyagu114 Dec 13 '11 at 12:43
@thiyagu114 No problem. Welcome to SO. – Chris Dec 13 '11 at 13:23

By default cp has aliase to cp -i. You can check it, type alias and you can see some like:

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 rm='rm -i'

To solve this problem just use /bin/cp /from /to command instead cp /from /to

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.