Change the group name


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Change the group name
# 1  
Old 03-05-2010
Change the group name

Hi,

I need to change the group name which is listed under a file.
The file has a list of users that need to be changed under the /home/
I tried with the below, I am sure that its wrong.

ll -la | awk '{ print $4}' | xargs chgrp /root/user
# 2  
Old 03-05-2010
Fundamentals time.

We assume that you are trying to change the group of files.
If this assumption is correct.

The syntax of the command is:

Code:
chgrp newgroup filename

Where "chgrp" is the command. See "man chgrp".
Where "newgrp" is the new group name for the "filename".
Where "filename" is the name of the file.


I am stuck.
What exactly is the contents of the "file" ? We can deduce that it contains a list of unix usernames with matching new group name. But what is the exact format of "file"?


Note: The output from:
Code:
ll -la | awk '{ print $4}'

is a list of group names. Because this list does not mention the filename the xargs comand is doomed to failure.


Please post the contents of the file called "file" and state the criteria for changing the group of files.

Last edited by methyl; 03-05-2010 at 09:14 PM.. Reason: grammar
# 3  
Old 03-05-2010
Please check with the below post
https://www.unix.com/shell-programmin...ent-users.html

Its the same problem as of mine.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Getting apache to see a LDAP group membership change

trying to implement authz to a webpage using require ldap-group. It works, except I need to do apachectl restart before the server will observe an add or a delete to the group. Seems like apache is acquiring the group membership at startup & caching it. It's a static group. I have apache... (0 Replies)
Discussion started by: maraixadm
0 Replies

2. Shell Programming and Scripting

How to Change group and Unmask it to 027 in Linux?

I want to propose a change to the run script environment. This would change the effective group of the wsadmin account to prodview with a umask of 027 before running our services. In linux this can be accomplished by the following #!/bin/ksh # # Original shell # newgrp prodview <<... (1 Reply)
Discussion started by: sindhu puja
1 Replies

3. Shell Programming and Scripting

Change the default group of a user

Hi , for user test we have 3 groups. 1. test 2. dba 3. qa by default the group it test. How can I change the default group to dba? (5 Replies)
Discussion started by: Anupam_Halder
5 Replies

4. UNIX for Advanced & Expert Users

How to change default group?

Hi frnds, I would like to change my default group. I tried using newgrp, but it will change the group in that xterm only. If i open a new xterm that setting is gone. Also i tried by putting newgrp <my_grp> into the file .cshrc which will be run during startup. Eventhough its working, it is... (5 Replies)
Discussion started by: appualex
5 Replies

5. UNIX for Dummies Questions & Answers

AIX user ID and group ID change

Hello AIX gurus, I have a requirement where I have to change user ID of user "myuser" from 100 to 200 and also the group ID of "mygroup" from 2 to 3. Please note that "myuser" has "mygroup" as it's primary group. What steps do I need to follow for this and in what order? Also can you please... (2 Replies)
Discussion started by: sacguy08
2 Replies

6. Shell Programming and Scripting

Change of group to different users

Need to change the chgrp for different uses d---rwx--t 3 root 764 4096 Mar 16 2007 algavi d---rwx--t 6 root 2857 4096 Jul 16 11:28 alharki d---rwx--t 5 root 2739 4096 Oct 14 2008 alpen d---rwx--t 5 root 546 4096 Mar 16 2007 alvarez d---rwx--t 3 root... (2 Replies)
Discussion started by: gsiva
2 Replies

7. Shell Programming and Scripting

automatically change owner and group

We have a program that when a new account is created using the webpage it creates a new directory on the linux filesystem for the account. The problem is the process that creates the directory is as root user, as I want ftpuser to be able to login I have to manually login and chown -R the... (1 Reply)
Discussion started by: borderblaster
1 Replies

8. UNIX for Advanced & Expert Users

Change Group

Hi... -bash-3.00$ id -a uid=1004(oracle) gid=101(oinstall) groups=101(oinstall),100(dba) How to change gid from oinstall group to dba group?? (6 Replies)
Discussion started by: adzuanamir
6 Replies

9. UNIX for Advanced & Expert Users

Change a users primary group after login

When users login, they are directed to menu (aix script). The menu enables the user to choose an environment to work in. Each environment has a different group id. When a user chooses a menu option, I want to change his primary group to that specific environment's group id. Is this at all possible... (3 Replies)
Discussion started by: terrym
3 Replies

10. Solaris

Change Group

I need to change group for a file elektro.log currently the owner is buddy and group is assigned as other i need to change the group to freinds I issued this command chgrp freinds elektro.log but i encounetered error like "....not owner" do i need to su as root to perform this action. (1 Reply)
Discussion started by: vilves
1 Replies
Login or Register to Ask a Question