Search this Website

 

Ubuntu

UNIX

help needed in basic unix

Category: UNIX-Unix Beginner

help needed in basic unix

hi friends,
how to obtain list of groups we r a member of and redirect it to a file.
how to append the details of current os to a file.
how to append the estimated file space to a file.
how to append the details of users loged on along wth their current activity into a file.

thank you...i'm alien to unix os.


quote:
originally posted by bobby36
hi friends,
how to obtain list of groups we r a member of and redirect it to a file.
how to append the details of current os to a file.
how to append the estimated file space to a file.
how to append the details of users loged on along wth their current activity into a file.

thank you...i'm alien to unix os.

uname - a > os.txt
df -t > space.txt
ps -lf > users.txt


quote:
originally posted by bobby36
how to obtain list of groups we r a member of and redirect it to a file.

# groups > /tmp/groups.txt

# id -gn > /tmp/groups.txt

username stands for the user you want the groups for, without username you get the groups for the current user



quote:
originally posted by funksen
# groups > /tmp/groups.txt

# id -gn > /tmp/groups.txt

username stands for the user you want the groups for, without username you get the groups for the current user

thanks mate for your help.