Oct 17, 2001 #1 rilango Instructor Oct 17, 2001 1 SG How do you change the ownership status of a file where user has a name such as "name.org" Thanks for the help. Regards linila
How do you change the ownership status of a file where user has a name such as "name.org" Thanks for the help. Regards linila
Oct 17, 2001 1 #2 ifincham IS-IT--Management Jul 11, 2001 1,768 GB Hi, One obvious way would be to get the (numeric) uid of the user from 'cat /etc/passwd' and use that in the chown command - e.g. chown 501 somefile (where 501 is the uid to change ownership to) Regards Upvote 0 Downvote
Hi, One obvious way would be to get the (numeric) uid of the user from 'cat /etc/passwd' and use that in the chown command - e.g. chown 501 somefile (where 501 is the uid to change ownership to) Regards