Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change to another group name

Status
Not open for further replies.

evergrean100

Technical User
Dec 1, 2006
115
US
How do you change group name in a directory to another group name that already exists?

I have a directory with files like this:
-rw-rw-r-- 1 jones oldgroupname 11112 Nov 25 2006 file.pl
-rw-rw-r-- 1 jones oldgroupname 11112 Nov 25 2006 file2.pl

I need the group name to be changed to:
-rw-rw-r-- 1 jones anothergroupname 11112 Nov 25 2006 file.pl
-rw-rw-r-- 1 jones anothergroupname 11112 Nov 25 2006 file2.pl
 
As root do: chown -f user:group filename

chown -f jones:anothergroupname file.pl
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top