Menu
blog.headdesk.me
blog.headdesk.me

Copy directory in linux

Posted on 2016/05/042016/08/24

Back to 101, copy a directory. This sounds trivial but there are subtle differences that can make a huge difference.

I used to run this as it makes sense to me syntactically

rsync -av source/* dest/

It works well BUT all the hidden directories right below source/ will not be copied.

If I do any of the followings, source will end up being a subdirectories under dest:

rsync -av source dest

cp -ap source dest

cp -ap source/ dest

So what’s the correct way to do it? There may be a number of ways but this one works:

rsync -av source/ dest

Simple command, copies everything and preserve ownerships, permissions, and dates. 

Loading

facebookShare on Facebook
TwitterTweet

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Full text search

Recent Posts

  • Upgrade RockyLinux 8 to 9
  • Terraform and segregated permissions
  • LVM Compression and Deduplication
  • Edit gpg encrypted file with vim
  • Lelit Elizabeth PL92T Pressure Tuning
  • aws (8)
  • coffee (1)
  • headfi (1)
  • linux (6)
  • others (59)
  • security (2)
  • tech (36)
  • wordpress (2)

Loading

apache apigateway aws awscli azure backup cloud coffee docker ec2 EL8 ElasticBeanstalk enpass espresso featured kernel lelit linux lvm meltdown MFA nat gateway nginx php proliant python rdp Redhat RHEL rpm Ryzen s2s scp serverless site-to-site smartarray snapshot spectre tech terraform transit gateway ubuntu ubuntu upgrade vpn wordpress

©2023 blog.headdesk.me | Powered by SuperbThemes & WordPress