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
# id -gn
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
# id -gn
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.
