How can I copy all the files attributes of file B, into file A in command line ? (A & B are differents)

ex: A user user 666, B root root 770

result --> A root root 770

thanks

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
chown --reference=B A
chmod --reference=B A

This works on Linux/GNU. On other systems you might need to go a more complicated route, or install the GNU coreutils.

link|improve this answer
feedback

You should be able to use chmod --reference=B A

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.