Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. root@host [/home1]# cp -f hello /home3
  2. cp: omitting directory `hello'
  3. root@host [/home1]# cp -rf hello /home3
  4. cp: overwrite `/home3/hello/.buildpath'? y
  5. cp: overwrite `/home3/hello/.bash_logout'? y
  6. cp: overwrite `/home3/hello/.project'? ^C
  7.  
  8. root@host [/home1]# cp -rf hello /home3
  9. cp: overwrite `/home3/hello/.buildpath'? y
  10. cp: overwrite `/home3/hello/.bash_logout'? y
  11. cp: overwrite `/home3/hello/.project'? ^C
  12. root@host [/home1]# cp -force hello /home3
  13. cp: invalid option -- 'o'
  14. Try `cp --help' for more information.
  15. root@host [/home1]# cp --remove-destination hello /home4
  16. cp: omitting directory `hello'
  17. root@host [/home1]# cp --remove-destination hello /home3
  18. cp: omitting directory `hello'
  19. root@host [/home1]# cp --remove-destination -r hello /home3
  20. cp: overwrite `/home3/hello/.buildpath'? ^C
  21. root@host [/home1]#
  22.  
  23. unalias cp
  24. unset -f cp
  25.  
  26. command cp [...]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement