Guest User

Untitled

a guest
Aug 15th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. How to copy in bash all directory and files recursive?
  2. find ./SourceFoler/ -maxdepth 4 -exec cp -R '{}' ./DestFolder/ ;
  3.  
  4. cp -r ./SourceFolder ./DestFolder
Add Comment
Please, Sign In to add comment