Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* copy and migrations files */
- cp -r /dir1/ /dir2/ - copy dir and files without save access rights
- cp -a /dir1/. /dir2/ - copy dir and files (contain hidden) with save access rights
- cp -a /dir1/ /dir2/ - copy dir and all files to another dir
- cp -rp /dir1/* /dir2 - copy all files of folder 'dir1' to folder 'dir2'
- /* SCP files copy between servers */
- scp -i /secretkey /dir1 username@XX.XX.XX.XXX:/dir2
- scp -i /secretkey username@XX.XX.XX.XXX:/dir1 /dir2
- scp -i /secretkey -r /dir1/ username@XX.XX.XX.XXX:/dir2/ - copy all files recursive from dir1 to dir2 on other server
Add Comment
Please, Sign In to add comment