Recursively change the owner of all files in a directory

Contributor Icon Contributed by qmchenry  
Tag Icon Tagged: UNIX  

Using the chown command, the owner of unix files can be changed. An option of chown allows you to change the ownership of all files and subdirectories of a directory.

To change the owner to webmaster of all files in the directory called html in the current working directory:

chown -R webmaster html

You can add the UNIX group information (for example, www) to this command to recursively change the user and group in one command:

chown -R webmaster:www html

 

No Comments -


No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment -