I intend to copy a single file on Google Cloud Storage from bucket 1 to bucket 2 while keeping ACLs (Access Control List) using gsutil.
The following command copies the file over, however it does not copy ACL information over :
gsutil cp -p rsync gs://bucket1/path/file gs://bucket2/path/file
How can I both copy the file and the ACLs ?